We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Multiple soundness issues
lexical-core
0.7.6
RUSTSEC-2024-0377 contains multiple soundness issues:
RUSTSEC-2024-0377
BytesIter
unsafe
write_float()
MaybeUninit::assume_init()
radix()
Version 1.0 fixes these issues, removes the vast majority of unsafe code, and also fixes some correctness issues.
See advisory page for additional details.
The text was updated successfully, but these errors were encountered:
Closing as this is only used in example.
├ lexical-core v0.7.6 └── nom v5.1.3 └── config v0.10.1 └── deadpool v0.7.0 └── http-client v6.5.3 └── surf v2.3.2 └── (dev) smol v2.0.0
Sorry, something went wrong.
No branches or pull requests
lexical-core
0.7.6
RUSTSEC-2024-0377
contains multiple soundness issues:BytesIter
trait has safety invariants but is public and not markedunsafe
write_float()
callsMaybeUninit::assume_init()
on uninitialized data, which is is not allowed by the Rust abstract machineradix()
callsMaybeUninit::assume_init()
on uninitialized data, which is is not allowed by the Rust abstract machineVersion 1.0 fixes these issues, removes the vast majority of
unsafe
code, and also fixes some correctness issues.See advisory page for additional details.
The text was updated successfully, but these errors were encountered: