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
Hi there, we (Rust group @sslab-gatech) are scanning crates on crates.io for potential soundness bugs. We noticed that the Index object implements the Send and Sync traits for all types:
This should likely be bounded when both K and V are Send and Sync respectively, otherwise it makes it possible to send an Index object across threads containing non-Sendable types such as an Rc object or a Cell.
The text was updated successfully, but these errors were encountered:
Once a fix is released to crates.io, please open a pull request to update the advisory with the patched version, or file an issue on the advisory database repository.
Hi there, we (Rust group @sslab-gatech) are scanning crates on crates.io for potential soundness bugs. We noticed that the
Index
object implements theSend
andSync
traits for all types:appendix/src/lib.rs
Lines 61 to 62 in b279bc2
This should likely be bounded when both
K
andV
areSend
andSync
respectively, otherwise it makes it possible to send anIndex
object across threads containing non-Sendable types such as anRc
object or aCell
.The text was updated successfully, but these errors were encountered: