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

CrateRequiredLatestStatus
 binary-merge^0.1.10.1.2up to date
 bytecheck^0.6.50.8.3out of date
 inplace-vec-builder^0.1.00.1.1up to date
 lazy_static^1.4.01.5.0up to date
 num-traits^0.20.2.19up to date
 parking_lot^0.11.20.12.5out of date
 rkyv ⚠️^0.7.180.8.18out of date
 serde^11.0.229up to date
 smallvec ⚠️^1.41.16.0maybe insecure
 sorted-iter^0.10.1.11up to date

Dev dependencies

(18 total, 5 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.321.0.104up to date
 criterion^0.3.00.8.2out of date
 fnv^1.0.71.0.7up to date
 futures^0.3.170.3.34up to date
 hex^0.4.30.4.3up to date
 hexdump^0.1.10.1.3up to date
 lazy_static^1.4.01.5.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.1.0out of date
 quickcheck_macros^0.8.01.2.0out of date
 rand^0.7.30.10.2out of date
 rkyv ⚠️^0.7.190.8.18out of date
 serde_json^1.0.411.0.151up to date
 stats_alloc^0.1.80.1.10up to date
 testdrop^0.1.20.1.2up to date
 tokio ⚠️^1.13.01.53.1maybe 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);

rkyv: Insufficient archive validation can cause out-of-bounds reads in archives containing Rc/Arc

RUSTSEC-2026-0235

Shared pointer validation keyed already-validated pointees by their address and type, but did not include pointer metadata. For unsized pointees, an archive could therefore contain multiple Rc, Arc, or weak pointers that shared a data address but used different metadata, such as different slice lengths.

Once the first pointer had been validated, later pointers to the same address skipped pointee validation. The safe checked rkyv::access API could consequently return a slice with a forged length, allowing safe indexing to read out of bounds. The same validation bypass was reachable through checked deserialization with rkyv::from_bytes.

Version 0.8.17 includes pointer metadata in shared pointer validation and rejects conflicting metadata. The 0.7 series is also affected but is no longer supported by upstream. Users who process untrusted archives should upgrade to 0.8.17 or later.