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 libtock-rs version we're based on uses spin to lock the allocator (here), even though there is only one thread of execution so the lock isn't necessary and I don't expect much issue given that only one thread acquires the lock only once.
Expected Behavior
Cargo audit doesn't find any advisory.
Actual Behavior
RUSTSEC-2019-0031 is found.
Next steps
linked_list_allocator
: Spin is no longer actively maintained (RUSTSEC-2019-0031) rust-osdev/linked-list-allocator#22.spin
to lock the allocator (here), even though there is only one thread of execution so the lock isn't necessary and I don't expect much issue given that only one thread acquires the lock only once.ring
dependency is only used for unit tests, and the advisory is tracked here: spin-rs no longer maintained (dependency) briansmith/ring#921.The text was updated successfully, but these errors were encountered: