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 euclider

Dependencies

(19 total, 13 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 clippy0.*0.0.302up to date
 glium^0.22.00.34.0out of date
 nalgebra^0.8.20.32.5out of date
 image ⚠️^0.18.00.25.1out of date
 scoped_threadpool^0.1.80.1.9up to date
 noise^0.4.10.9.0out of date
 rand^0.3.180.8.5out of date
 num^0.1.410.4.2out of date
 palette^0.2.10.7.5out of date
 json^0.11.120.12.4out of date
 parse-generics-shim^0.1.10.1.1up to date
 clap^2.29.04.5.4out of date
 meval^0.1.00.2.0out of date
 num_cpus^1.7.01.16.0up to date
 float-cmp^0.2.50.9.0out of date
 det^0.1.00.1.0up to date
 boolinator^0.1.02.4.0out of date
 smallvec ⚠️^0.6.61.13.2out of date
 mashup^0.1.90.1.14+deprecatedup to date

Security Vulnerabilities

image: Flaw in interface may drop uninitialized instance of arbitrary types

RUSTSEC-2019-0014

Affected versions of this crate would call Vec::set_len on an uninitialized vector with user-provided type parameter, in an interface of the HDR image format decoder. They would then also call other code that could panic before initializing all instances.

This could run Drop implementations on uninitialized types, equivalent to use-after-free, and allow an attacker arbitrary code execution.

Two different fixes were applied. It is possible to conserve the interface by ensuring proper initialization before calling Vec::set_len. Drop is no longer called in case of panic, though.

Starting from version 0.22, a breaking change to the interface requires callers to pre-allocate the output buffer and pass a mutable slice instead, avoiding all unsafe code.

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.