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 sardonyx_rendy

Dependencies

(22 total, 9 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 approx^0.3.20.5.1out of date
 derivative^1.02.2.0out of date
 derive-new^0.5.60.6.0out of date
 failure^0.10.1.8up to date
 fnv^11.0.7up to date
 genmesh^0.60.6.2up to date
 glsl-layout ⚠️^0.30.5.0out of date
 lazy_static^1.31.4.0up to date
 log^0.40.4.21up to date
 palette^0.40.7.5out of date
 rendy^0.3.20.5.1out of date
 ron^0.50.8.1out of date
 sardonyx_assets>=0.0.3N/Aup to date
 sardonyx_config>=0.0.3N/Aup to date
 sardonyx_core>=0.0.3N/Aup to date
 sardonyx_derive>=0.0.3N/Aup to date
 sardonyx_error>=0.0.3N/Aup to date
 sardonyx_window>=0.0.3N/Aup to date
 serde^11.0.197up to date
 smallvec ⚠️^0.6.91.13.2out of date
 static_assertions^0.31.1.0out of date
 thread_profiler^0.30.3.0up to date

Dev dependencies

(5 total, 4 outdated)

CrateRequiredLatestStatus
 approx^0.30.5.1out of date
 criterion^0.2.110.5.1out of date
 more-asserts^0.2.10.3.1out of date
 rayon^1.1.01.10.0up to date
 winit^0.190.29.15out 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.

glsl-layout: Double drop upon panic in 'fn map_array()'

RUSTSEC-2021-0005

Affected versions of this crate did not guard against panic within the user-provided function f (2nd parameter of fn map_array), and thus panic within f causes double drop of a single object.

The flaw was corrected in the 0.4.0 release by wrapping the object vulnerable to a double drop within ManuallyDrop<T>.