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 wr_glyph_rasterizer

Dependencies

(20 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 webrender_api^0.680.69.0out of date
 core-foundation^0.9.20.10.1out of date
 core-graphics^0.230.25.0out of date
 core-text^20.122.0.0out of date
 dwrote^0.110.11.5up to date
 euclid^0.22.00.22.14up to date
 firefox-on-glean^0.1.00.1.0up to date
 freetype^0.70.7.2up to date
 glean=65.2.169.0.0out of date
 lazy_static^11.5.0up to date
 libc^0.20.2.186up to date
 log^0.40.4.33up to date
 wr_malloc_size_of^0.2.20.2.2up to date
 malloc_size_of_derive^0.10.1.3up to date
 objc^0.20.2.7up to date
 rayon^11.12.0up to date
 rustc-hash^2.1.12.1.2up to date
 serde^1.01.0.228up to date
 smallvec ⚠️^11.15.2maybe insecure
 tracy-rs^0.1.20.1.2up to date

Dev dependencies

(6 total, 3 outdated)

CrateRequiredLatestStatus
 env_logger^0.100.11.11out of date
 euclid^0.220.22.14up to date
 gleam^0.15.10.15.1up to date
 glutin^0.280.32.3out of date
 rayon^11.12.0up to date
 winit^0.260.30.13out 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.