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 vec-collections

Dependencies

(10 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 binary-merge^0.1.10.1.2up to date
 bytecheck^0.6.50.7.0out of date
 inplace-vec-builder^0.1.00.1.1up to date
 lazy_static^1.4.01.4.0up to date
 num-traits^0.20.2.19up to date
 parking_lot^0.11.20.12.2out of date
 rkyv^0.7.180.7.44up to date
 serde^11.0.202up to date
 smallvec ⚠️^1.41.13.2maybe insecure
 sorted-iter^0.10.1.11up to date

Dev dependencies

(18 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.321.0.83up to date
 criterion^0.3.00.5.1out of date
 fnv^1.0.71.0.7up to date
 futures^0.3.170.3.30up to date
 hex^0.4.30.4.3up to date
 hexdump^0.1.10.1.1up to date
 lazy_static^1.4.01.4.0up to date
 maplit^1.0.21.0.2up to date
 num-traits^0.2.80.2.19up to date
 obey^0.1.00.1.1up to date
 quickcheck^0.81.0.3out of date
 quickcheck_macros^0.8.01.0.0out of date
 rand^0.7.30.8.5out of date
 rkyv^0.7.190.7.44up to date
 serde_json^1.0.411.0.117up to date
 stats_alloc^0.1.80.1.10up to date
 testdrop^0.1.20.1.2up to date
 tokio ⚠️^1.13.01.37.0maybe insecure

Security Vulnerabilities

smallvec: Buffer overflow in SmallVec::insert_many

RUSTSEC-2021-0003

A bug in the SmallVec::insert_many method caused it to allocate a buffer that was smaller than needed. It then wrote past the end of the buffer, causing a buffer overflow and memory corruption on the heap.

This bug was only triggered if the iterator passed to insert_many yielded more items than the lower bound returned from its size_hint method.

The flaw was corrected in smallvec 0.6.14 and 1.6.1, by ensuring that additional space is always reserved for each item inserted. The fix also simplified the implementation of insert_many to use less unsafe code, so it is easier to verify its correctness.

Thank you to Yechan Bae (@Qwaz) and the Rust group at Georgia Tech’s SSLab for finding and reporting this bug.

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);