-
-
Notifications
You must be signed in to change notification settings - Fork 25
Description
Running cargo deny check dependencies on a project that includes three-d-asset with the obj feature displays the following alert.
ID: RUSTSEC-2023-0055
Advisory: https://rustsec.org/advisories/RUSTSEC-2023-0055
lexicalcontains multiple soundness issues:
- Bytes::read() allows creating instances of types with invalid bit patterns
- BytesIter::read() advances iterators out of bounds
- The
BytesItertrait has safety invariants but is public and not markedunsafewrite_float()callsMaybeUninit::assume_init()on uninitialized data, which is is not allowed by the Rust abstract machineThe crate also has some correctness issues and appears to be unmaintained.
Alternatives
For quickly parsing floating-point numbers third-party crates are no longer needed. A fast float parsing algorith by the author of
lexicalhas been merged into libcore.For quickly parsing integers, consider
atoiandbtoicrates (100% safe code).atoi_radix10provides even faster parsing, but only with-C target-cpu=native, and at the cost of someunsafe.For formatting integers in a
#[no_std]context consider thenumtoacrate.For working with big numbers consider
num-bigintandnum-traits.
Solution: No safe upgrade is available!lexical v5.2.2 └── wavefront_obj v10.0.0 └── three-d-asset v0.5.0 └── three-d v0.15.0