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, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.01.0.100up to date
 arrow-arith^56.2.056.2.0up to date
 arrow-array^56.2.056.2.0up to date
 arrow-buffer^56.2.056.2.0up to date
 arrow-cast^56.2.056.2.0up to date
 arrow-data^56.2.056.2.0up to date
 arrow-ipc^56.2.056.2.0up to date
 arrow-ord^56.2.056.2.0up to date
 arrow-row^56.2.056.2.0up to date
 arrow-schema^56.2.056.2.0up to date
 arrow-select^56.2.056.2.0up to date
 arrow-string^56.2.056.2.0up to date
 base64^0.220.22.1up to date
 bytes^11.10.1up to date
 clap^4.4.64.5.48up 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.14.1out of date
 prost-types^0.13.10.14.1out of date
 tokio ⚠️^1.01.47.1maybe insecure
 tonic^0.130.14.2out of date
 tracing-log^0.20.2.0up to date
 tracing-subscriber^0.3.10.3.20up to date

Dev dependencies

(13 total, 1 possibly insecure)

CrateRequiredLatestStatus
 arrow-cast^56.2.056.2.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.17up to date
 pin-project-lite^0.20.2.16up to date
 tempfile^3.33.23.0up to date
 tokio ⚠️^1.01.47.1maybe 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.20up to date
 uuid^1.10.01.18.1up 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);