This crate has no reviews yet. To add a review, set up your cargo-crev
.
Lib.rs has been able to verify that all files in the crate's tarball are in the crate's repository. Please note that this check is still in beta, and absence of this confirmation does not mean that the files don't match.
Crates in the crates.io registry are tarball snapshots uploaded by crates' publishers. The registry is not using crates' git repositories, so there is a possibility that published crates have a misleading repository URL, or contain different code from the code in the repository.
To review the actual code of the crate, it's best to use cargo crev open signal-simple
. Alternatively, you can download the tarball of signal-simple v0.1.1 or view the source online.
Affected versions of this crate unconditionally implement Send/Sync for
SyncChannel<T>
.SyncChannel<T>
doesn't provide access to&T
but merely serves as a channel that consumes and returns ownedT
.Users can create UB in safe Rust by sending
T: !Send
to other threads withSyncChannel::send/recv
APIs. UsingT = Arc<Cell<_>
allows to create data races (which can lead to memory corruption), and usingT = MutexGuard<T>
allows to unlock a mutex from a thread that didn't lock the mutex.CVE-2020-36446
GHSA-36cg-4jff-5863
GHSA-8892-84wf-cg8f