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 rust-igmc-2018

Dependencies

(13 total, 9 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 serde^1.01.0.202up to date
 serde_derive^1.01.0.202up to date
 ron^0.40.8.1out of date
 log^0.40.4.21up to date
 rand^0.50.8.5out of date
 font-kit^0.10.13.1out of date
 gilrs^0.60.10.7out of date
 nalgebra ⚠️^0.160.32.5out of date
 ncollide2d^0.170.33.0out of date
 itertools^0.70.13.0out of date
 either^1.51.12.0up to date
 clap~2.324.5.4out of date
 image ⚠️^0.200.25.1out of date

Crate nk_ecs

Dependencies

(13 total, 9 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 serde^1.01.0.202up to date
 serde_derive^1.01.0.202up to date
 log^0.40.4.21up to date
 either^1.51.12.0up to date
 rand^0.60.8.5out of date
 font-kit^0.10.13.1out of date
 gilrs^0.60.10.7out of date
 nalgebra ⚠️^0.160.32.5out of date
 ncollide2d^0.170.33.0out of date
 itertools^0.70.13.0out of date
 image ⚠️^0.200.25.1out of date
 shred^0.70.16.1out of date
 shred-derive^0.50.7.0out of date

Crate nk_data

Dependencies

(4 total, all up-to-date)

CrateRequiredLatestStatus
 serde^1.01.0.202up to date
 serde_derive^1.01.0.202up to date
 log^0.40.4.21up to date
 either^1.51.12.0up to date

Crate nk_loader

Dependencies

(11 total, 7 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 serde^1.01.0.202up to date
 serde_derive^1.01.0.202up to date
 ron^0.40.8.1out of date
 log^0.40.4.21up to date
 rand^0.50.8.5out of date
 font-kit^0.10.13.1out of date
 gilrs^0.60.10.7out of date
 nalgebra ⚠️^0.160.32.5out of date
 ncollide2d^0.170.33.0out of date
 itertools^0.70.13.0out of date
 either^1.51.12.0up to date

Crate nk_state

Dependencies

(13 total, 9 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 serde^1.01.0.202up to date
 serde_derive^1.01.0.202up to date
 ron^0.40.8.1out of date
 log^0.40.4.21up to date
 rand^0.50.8.5out of date
 font-kit^0.10.13.1out of date
 gilrs^0.60.10.7out of date
 nalgebra ⚠️^0.160.32.5out of date
 ncollide2d^0.170.33.0out of date
 itertools^0.70.13.0out of date
 either^1.51.12.0up to date
 image ⚠️^0.200.25.1out of date
 clap~2.324.5.4out of date

Crate nk_util

Dependencies

(12 total, 8 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 serde^1.01.0.202up to date
 serde_derive^1.01.0.202up to date
 ron^0.40.8.1out of date
 log^0.40.4.21up to date
 rand^0.50.8.5out of date
 font-kit^0.10.13.1out of date
 gilrs^0.60.10.7out of date
 nalgebra ⚠️^0.160.32.5out of date
 ncollide2d^0.170.33.0out of date
 itertools^0.70.13.0out of date
 either^1.51.12.0up to date
 clap~2.324.5.4out of 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.

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.