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 webrender

Dependencies

(36 total, 13 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 allocator-api2^0.2.180.4.0out of date
 webrender_api^0.680.69.0out of date
 base64^0.220.22.1up to date
 bincode^1.03.0.0out of date
 bitflags^22.13.0up to date
 byteorder^1.01.5.0up to date
 derive_more^22.1.1up to date
 etagere^0.2.130.3.0out of date
 euclid^0.22.100.22.14up to date
 firefox-on-glean^0.1.00.1.0up to date
 gleam^0.15.10.15.1up to date
 glean=65.2.169.0.0out of date
 wr_glyph_rasterizer^0.680.69.0out of date
 lazy_static^11.5.0up 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
 num-traits^0.20.2.19up to date
 peek-poke^0.30.3.0up to date
 plane-split^0.180.18.0up to date
 png^0.160.18.1out of date
 rayon^11.12.0up to date
 ron^0.10.00.12.2out of date
 rustc-hash^2.1.12.1.2up to date
 serde^1.01.0.228up to date
 serde_json^11.0.150up to date
 sha1^0.100.11.0out of date
 smallvec ⚠️^11.15.2maybe insecure
 svg_fmt^0.40.4.5up to date
 swgl^0.680.69.0out of date
 tiny_http^0.120.12.0up to date
 topological-sort^0.10.2.2out of date
 tracy-rs^0.1.20.1.2up to date
 url^2.52.5.8up to date
 webrender_build^0.680.69.0out of date
 zeitstempel^0.1.20.2.2out of date

Dev dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 mozangle^0.5.20.5.5up to date
 rand^0.40.10.1out 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.