This project might be open to known security vulnerabilities, which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom.

Crate arrow-flight

Dependencies

(24 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.01.0.98up to date
 arrow-arith^55.0.055.0.0up to date
 arrow-array^55.0.055.0.0up to date
 arrow-buffer^55.0.055.0.0up to date
 arrow-cast^55.0.055.0.0up to date
 arrow-data^55.0.055.0.0up to date
 arrow-ipc^55.0.055.0.0up to date
 arrow-ord^55.0.055.0.0up to date
 arrow-row^55.0.055.0.0up to date
 arrow-schema^55.0.055.0.0up to date
 arrow-select^55.0.055.0.0up to date
 arrow-string^55.0.055.0.0up to date
 base64^0.220.22.1up to date
 bytes^11.10.1up to date
 clap^4.4.64.5.38up to date
 futures^0.30.3.31up to date
 once_cell^11.21.3up to date
 paste^1.01.0.15up to date
 prost^0.13.10.13.5up to date
 prost-types^0.13.10.13.5up to date
 tokio ⚠️^1.01.45.0maybe insecure
 tonic^0.12.30.13.1out of date
 tracing-log^0.20.2.0up to date
 tracing-subscriber^0.3.10.3.19up to date

Dev dependencies

(13 total, 1 possibly insecure)

CrateRequiredLatestStatus
 arrow-cast^55.0.055.0.0up to date
 assert_cmd^2.0.82.0.17up to date
 http^1.1.01.3.1up to date
 http-body^1.0.01.0.1up to date
 hyper-util^0.10.1.11up to date
 pin-project-lite^0.20.2.16up to date
 tempfile^3.33.19.1up to date
 tokio ⚠️^1.01.45.0maybe insecure
 tokio-stream^0.10.1.17up to date
 tower^0.5.00.5.2up to date
 tracing-log^0.20.2.0up to date
 tracing-subscriber^0.3.10.3.19up to date
 uuid^1.10.01.16.0up to date

Security Vulnerabilities

tokio: reject_remote_clients Configuration corruption

RUSTSEC-2023-0001

On Windows, configuring a named pipe server with pipe_mode will force ServerOptions::reject_remote_clients as false.

This drops any intended explicit configuration for the reject_remote_clients that may have been set as true previously.

The default setting of reject_remote_clients is normally true meaning the default is also overridden as false.

Workarounds

Ensure that pipe_mode is set first after initializing a ServerOptions. For example:

let mut opts = ServerOptions::new();
opts.pipe_mode(PipeMode::Message);
opts.reject_remote_clients(true);