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 blitz-dom

Dependencies

(31 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 accesskit^0.170.19.0out of date
 app_units^0.7.50.7.8up to date
 arboard^3.4.13.5.0up to date
 atomic_refcell^0.1.130.1.13up to date
 blitz-traits^0.1.0-alpha.2N/Aup to date
 color^0.30.3.1up to date
 cursor-icon^11.2.0up to date
 euclid^0.220.22.11up to date
 html-escape^0.2.130.2.13up to date
 image^0.250.25.6up to date
 keyboard-types^0.70.8.0out of date
 markup5ever^0.16.10.16.1up to date
 objc2^0.60.6.1up to date
 parley^0.40.5.0out of date
 peniko^0.40.4.0up to date
 percent-encoding^2.3.12.3.1up to date
 selectors^0.280.28.0up to date
 slab^0.4.90.4.9up to date
 smallvec ⚠️^11.15.1maybe insecure
 string_cache^0.8.70.8.9up to date
 stylo^0.30.3.0up to date
 stylo_config^0.30.3.0up to date
 stylo_dom^0.30.3.0up to date
 stylo_traits^0.30.3.0up to date
 stylo_taffy^0.1.0-alpha.2N/Aup to date
 taffy^0.80.8.2up to date
 tracing^0.1.400.1.41up to date
 url^2.5.02.5.4up to date
 usvg^0.44.00.45.1out of date
 woff^0.60.6.1up to date
 woff2^0.30.3.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.