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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: