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

Dependencies

(7 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 binary-merge^0.1.10.1.2up to date
 bytecheck^0.6.50.8.0out of date
 inplace-vec-builder^0.1.00.1.1up to date
 ref-cast^1.0.201.0.23up to date
 rkyv^0.7.180.8.8out of date
 serde^11.0.215up to date
 smallvec ⚠️^1.01.13.2maybe insecure

Dev dependencies

(11 total, 5 outdated)

CrateRequiredLatestStatus
 criterion^0.3.00.5.1out of date
 hex^0.4.30.4.3up to date
 num-traits^0.2.80.2.19up to date
 obey^0.1.10.1.1up to date
 proptest^1.1.01.5.0up to date
 quickcheck^0.81.0.3out of date
 quickcheck_macros^0.8.01.0.0out of date
 rand^0.7.20.8.5out of date
 rkyv^0.7.180.8.8out of date
 serde_cbor^0.11.10.11.2up to date
 testdrop^0.1.20.1.2up to date

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.