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 gix-object

Dependencies

(13 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 bstr^1.3.01.9.1up to date
 btoi^0.4.20.4.3up to date
 document-features^0.2.00.2.8up to date
 gix-actor^0.20.00.31.1out of date
 gix-features^0.29.00.38.1out of date
 gix-hash^0.11.10.14.2out of date
 gix-validate^0.7.30.8.4out of date
 hex^0.4.20.4.3up to date
 itoa^1.0.11.0.11up to date
 nom^77.1.3up to date
 serde^1.0.1141.0.198up to date
 smallvec ⚠️^1.4.01.13.2maybe insecure
 thiserror^1.0.341.0.58up to date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 pretty_assertions^1.0.01.4.0up 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.