You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The 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 lexical has been merged into libcore.
For quickly parsing integers, consider atoi and btoi crates (100% safe code). atoi_radix10 provides even faster parsing, but only with -C target-cpu=native, and at the cost of some unsafe.
For formatting integers in a #[no_std] context consider the numtoa crate.
For working with big numbers consider num-bigint and num-traits.
Solution: No safe upgrade is available!
lexical v5.2.2
└── wavefront_obj v10.0.0
The text was updated successfully, but these errors were encountered:
jrudolph
added a commit
to jrudolph/wavefront_obj
that referenced
this issue
Sep 30, 2024
Running
cargo deny check dependencies
on a project that includeswavefront_obj
displays the following alert.Please consider replacing the dependency on
lexical
.The text was updated successfully, but these errors were encountered: