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 amethyst_core

Dependencies

(18 total, 9 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 alga^0.9.00.9.3up to date
 alga_derive^0.9.00.9.2up to date
 amethyst_error^0.1.00.15.3out of date
 approx^0.30.5.1out of date
 derive-new^0.5.60.6.0out of date
 fnv^11.0.7up to date
 getset^0.0.70.1.2out of date
 hibitset^0.5.20.6.4out of date
 log^0.4.60.4.21up to date
 nalgebra ⚠️^0.18.00.32.5out of date
 num-traits^0.2.00.2.18up to date
 rayon^1.0.21.10.0up to date
 serde^11.0.198up to date
 shred^0.70.16.0out of date
 shrev^1.01.1.3up to date
 specs^0.140.20.0out of date
 specs-hierarchy^0.30.6.0out of date
 thread_profiler^0.30.3.0up to date

Dev dependencies

(2 total, 2 outdated)

CrateRequiredLatestStatus
 amethyst^0.11.00.15.3out of date
 ron^0.5.10.8.1out of date

Security Vulnerabilities

nalgebra: VecStorage Deserialize Allows Violation of Length Invariant

RUSTSEC-2021-0070

The Deserialize implementation for VecStorage did not maintain the invariant that the number of elements must equal nrows * ncols. Deserialization of specially crafted inputs could allow memory access beyond allocation of the vector.

This flaw was introduced in v0.11.0 (086e6e) due to the addition of an automatically derived implementation of Deserialize for MatrixVec. MatrixVec was later renamed to VecStorage in v0.16.13 (0f66403) and continued to use the automatically derived implementation of Deserialize.

This flaw was corrected in commit 5bff536 by returning an error during deserialization if the number of elements does not exactly match the expected size.