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 bayard

Dependencies

(28 total, 8 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.651.0.82up to date
 axum^0.5.160.7.5out of date
 bytes^1.2.11.6.0up to date
 clap^4.0.124.5.4up to date
 crossbeam^0.8.20.8.4up to date
 dashmap^5.4.05.5.3up to date
 exponential-backoff^1.1.01.2.0up to date
 foca^0.4.10.17.0out of date
 futures-util^0.3.240.3.30up to date
 http^0.2.81.1.0out of date
 lindera-tantivy^0.16.20.27.1out of date
 notify^5.0.06.1.1out of date
 num^0.4.00.4.2up to date
 path-slash^0.2.10.2.1up to date
 prost^0.11.00.12.4out of date
 rand^0.8.50.8.5up to date
 regex^1.6.01.10.4up to date
 serde^1.0.1451.0.198up to date
 serde_json^1.0.861.0.116up to date
 signal-hook^0.3.140.3.17up to date
 tantivy^0.18.00.22.0out of date
 thiserror^1.0.371.0.58up to date
 time^0.3.150.3.36up to date
 tokio ⚠️^1.21.11.37.0maybe insecure
 tokio-stream^0.1.100.1.15up to date
 tonic^0.8.20.11.0out of date
 tracing^0.1.370.1.40up to date
 tracing-subscriber^0.3.160.3.18up to date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 tempdir^0.3.70.3.7up to date

Build dependencies

(2 total, 2 outdated)

CrateRequiredLatestStatus
 tonic-build^0.8.20.11.0out of date
 prost-build^0.11.10.12.4out of 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);