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

(35 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 accesskit^0.170.21.1out of date
 app_units^0.7.50.7.8up to date
 atomic_refcell^0.1.130.1.13up to date
 bitflags^2.8.02.10.0up to date
 blitz-traits^0.2.00.2.0up to date
 color^0.30.3.2up to date
 cssparser^0.350.35.0up to date
 cursor-icon^11.2.0up to date
 debug_timer^0.1.20.1.3up 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.25.60.25.8out of date
 keyboard-types^0.70.8.3out of date
 linebender_resource_handle^0.10.1.1up to date
 markup5ever^0.350.35.0up to date
 objc2^0.60.6.3up to date
 parley^0.6.00.6.0up to date
 percent-encoding^2.3.12.3.2up to date
 rayon^11.11.0up to date
 selectors^0.320.32.0up to date
 skrifa^0.370.37.0up to date
 slab^0.4.90.4.11up to date
 smallvec ⚠️^11.15.1maybe insecure
 stylo^0.80.8.0up to date
 stylo_config^0.80.8.0up to date
 stylo_dom^0.80.8.0up to date
 stylo_traits^0.80.8.0up to date
 stylo_taffy^0.2.00.2.0up to date
 taffy^0.90.9.1up to 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
 wuff^0.20.2.1up 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.