The author of the difference
crate is unresponsive.
Maintained alternatives:
This project contains known security vulnerabilities. Find detailed information at the bottom.
cssparser
(7 total, 1 insecure)
Crate | Required | Latest | Status |
---|---|---|---|
cssparser-macros | ^0.6 | 0.6.0 | up to date |
dtoa-short | ^0.3 | 0.3.3 | up to date |
itoa | ^0.4 | 0.4.7 | up to date |
matches | ^0.1 | 0.1.8 | up to date |
phf | ^0.8 | 0.8.0 | up to date |
serde | ^1.0 | 1.0.123 | up to date |
smallvec | ^1.0 | 1.6.1 | insecure |
(3 total, 1 insecure)
Crate | Required | Latest | Status |
---|---|---|---|
difference | ^2.0 | 2.0.0 | insecure |
encoding_rs | ^0.8 | 0.8.28 | up to date |
serde_json | ^1.0 | 1.0.62 | up to date |
difference
: difference is unmaintainedThe author of the difference
crate is unresponsive.
Maintained alternatives:
smallvec
: Buffer overflow in SmallVec::insert_manyA 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.