This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate vega_lite_3

Dependencies

(10 total, 5 outdated, 1 insecure, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.221.0.98up to date
 csv^1.11.3.1up to date
 derive_builder^0.9.00.20.2out of date
 derive_more^0.992.0.1out of date
 nalgebra ⚠️^0.19.00.33.2out of date
 ndarray^0.130.16.1out of date
 rulinalg ⚠️^0.4.20.4.2insecure
 serde^1.01.0.219up to date
 serde_json^1.01.0.140up to date
 showata^0.2.00.3.4out of date

Dev dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 csv^1.11.3.1up to date
 ndarray-rand^0.110.15.0out of date

Security Vulnerabilities

rulinalg: Lifetime boundary for `raw_slice` and `raw_slice_mut` are incorrect

RUSTSEC-2020-0023

The affected version of rulinalg has incorrect lifetime boundary definitions for RowMut::raw_slice and RowMut::raw_slice_mut. They do not conform with Rust's borrowing rule and allows the user to create multiple mutable references to the same location. This may result in unexpected calculation result and data race if both references are used at the same time.

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.