Description
Affected versions of this crate unconditionally implements Send
/Sync
for Queue<T>
.
This allows (1) creating data races to a T: !Sync
and (2) sending T: !Send
to other threads, resulting in memory corruption or other undefined behavior.
More Info
https://github.com/rossdylan/rust-scottqueue/issues/1
Patched Versions