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, 8 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 accesskit^0.170.21.0out of date
 app_units^0.7.50.7.8up to date
 atomic_refcell^0.1.130.1.13up to date
 bitflags^2.8.02.9.4up to date
 blitz-traits^0.1.0-rc.20.1.0up to date
 color^0.30.3.1up to date
 cursor-icon^11.2.0up to date
 euclid^0.220.22.11up to date
 fastrand^2.3.02.3.0up to date
 html-escape^0.2.130.2.13up to date
 image^0.250.25.8up to date
 keyboard-types^0.70.8.1out of date
 markup5ever^0.350.35.0up to date
 objc2^0.60.6.2up to date
 parley^0.50.5.0up to date
 peniko^0.40.4.0up to date
 percent-encoding^2.3.12.3.2up to date
 selectors^0.290.31.0out of date
 slab^0.4.90.4.11up to date
 smallvec ⚠️^11.15.1maybe insecure
 stylo^0.40.7.0out of date
 stylo_config^0.40.7.0out of date
 stylo_dom^0.40.7.0out of date
 stylo_traits^0.40.7.0out of date
 stylo_taffy^0.1.0-rc.20.1.0up to date
 taffy^0.80.9.1out of date
 tracing^0.1.400.1.41up to date
 url^2.5.02.5.7up to date
 usvg^0.45.10.45.1up to date
 woff^0.60.6.2up 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.