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 bonsaidb-local

Dependencies

(33 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 argon2^0.5.10.5.3up to date
 async-trait^0.10.1.83up to date
 bincode^1.31.3.3up to date
 bonsaidb-core=0.5.00.5.0up to date
 bonsaidb-utils=0.5.00.5.0up to date
 byteorder^11.5.0up to date
 chacha20poly1305^0.100.10.1up to date
 clap^4.1.44.5.21up to date
 crossterm^0.27.00.28.1out of date
 derive-where~1.2.01.2.7up to date
 easy-parallel^3.2.03.3.1up to date
 flume^0.11.00.11.1up to date
 fs2^0.4.30.4.3up to date
 futures^0.3.190.3.31up to date
 hpke^0.100.12.0out of date
 itertools^0.110.13.0out of date
 lockedbox^0.1.10.1.2up to date
 log^0.40.4.22up to date
 lz4_flex^0.11.10.11.3up to date
 nebari^0.5.00.5.5up to date
 once_cell^11.20.2up to date
 p256^0.13.20.13.2up to date
 parking_lot^0.12.00.12.3up to date
 pot^3.0.03.0.1up to date
 rand^0.80.8.5up to date
 serde^11.0.215up to date
 sysinfo^0.29.40.32.0out of date
 thiserror^12.0.3out of date
 tokio ⚠️^1.16.11.41.1maybe insecure
 tracing^0.10.1.40up to date
 transmog-versions^0.1.00.1.1up to date
 watchable^1.1.11.1.2up to date
 zeroize^11.8.1up to date

Dev dependencies

(4 total, all up-to-date)

CrateRequiredLatestStatus
 anyhow^11.0.93up to date
 bonsaidb-core=0.5.00.5.0up to date
 fs_extra^1.2.01.3.0up to date
 futures^0.30.3.31up 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);