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 symbolic-debuginfo

Dependencies

(14 total, 7 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 dmsort^1.0.01.0.2up to date
 failure^0.1.50.1.8up to date
 fallible-iterator^0.2.00.3.0out of date
 flate2^1.0.71.0.30up to date
 gimli^0.18.00.29.0out of date
 goblin^0.0.230.8.2out of date
 lazycell^1.2.11.3.0up to date
 parking_lot^0.8.00.12.2out of date
 pdb^0.5.00.8.0out of date
 pest^2.1.12.7.10up to date
 pest_derive^2.1.02.7.10up to date
 serde^1.0.911.0.200up to date
 smallvec ⚠️^0.6.91.13.2out of date
 symbolic-common^6.1.412.8.0out of date

Dev dependencies

(1 total, 1 outdated)

CrateRequiredLatestStatus
 insta^0.8.11.38.0out of 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.