This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate actix

Dependencies

(17 total, 12 outdated, 1 insecure)

CrateRequiredLatestStatus
 actix-rt^1.1.12.15.0out of date
 actix_derive^0.50.6.2out of date
 bitflags^1.22.13.2out of date
 bytes^0.5.31.12.1out of date
 crossbeam-channel^0.40.5.17out of date
 derive_more^0.99.22.1.1out of date
 futures-channel^0.3.10.3.34up to date
 futures-util^0.3.10.3.34up to date
 log^0.40.4.34up to date
 once_cell^1.41.21.4up to date
 parking_lot^0.110.12.5out of date
 pin-project^0.4.171.1.13out of date
 smallvec^1.41.16.1up to date
 tokio ⚠️^0.2.61.53.1insecure
 tokio-util^0.30.7.19out of date
 trust-dns-proto^0.190.23.2out of date
 trust-dns-resolver^0.190.23.2out of date

Security Vulnerabilities

tokio: Data race when sending and receiving after closing a `oneshot` channel

RUSTSEC-2021-0124

If a tokio::sync::oneshot channel is closed (via the oneshot::Receiver::close method), a data race may occur if the oneshot::Sender::send method is called while the corresponding oneshot::Receiver is awaited or calling try_recv.

When these methods are called concurrently on a closed channel, the two halves of the channel can concurrently access a shared memory location, resulting in a data race. This has been observed to cause memory corruption.

Note that the race only occurs when both halves of the channel are used after the Receiver half has called close. Code where close is not used, or where the Receiver is not awaited and try_recv is not called after calling close, is not affected.

See tokio#4225 for more details.