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

Crate async-compression

Dependencies

(12 total, 6 outdated, 1 insecure)

CrateRequiredLatestStatus
 brotli^3.3.09.0.0out of date
 bytes^0.5.01.12.1out of date
 bzip2^0.4.10.6.1out of date
 flate2^1.0.111.1.10up to date
 futures-core^0.3.00.3.34up to date
 futures-io^0.3.00.3.34up to date
 zstd^0.7.00.14.0out of date
 memchr^2.2.12.8.3up to date
 pin-project-lite^0.2.00.2.17up to date
 tokio ⚠️^0.3.01.53.1insecure
 xz2^0.1.60.1.7up to date
 zstd-safe^3.0.08.0.0out of date

Dev dependencies

(10 total, 8 outdated, 1 insecure)

CrateRequiredLatestStatus
 bytes^0.6.01.12.1out of date
 futures^0.3.50.3.34up to date
 futures-test^0.3.50.3.34up to date
 futures_codec^0.4.10.5.0out of date
 ntest^0.7.30.9.5out of date
 proptest^0.9.41.11.0out of date
 proptest-derive^0.1.20.8.0out of date
 rand^0.7.20.10.3out of date
 tokio ⚠️^0.3.01.53.1insecure
 tokio-util^0.6.00.7.19out of date

Security Vulnerabilities

tokio: Task dropped in wrong thread when aborting `LocalSet` task

RUSTSEC-2021-0072

When aborting a task with JoinHandle::abort, the future is dropped in the thread calling abort if the task is not currently being executed. This is incorrect for tasks spawned on a LocalSet.

This can easily result in race conditions as many projects use Rc or RefCell in their Tokio tasks for better performance.

See tokio#3929 for more details.

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.