This project might be open to known security vulnerabilities, which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom.

Crate tox

Dependencies

(13 total, 7 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 byteorder^11.5.0up to date
 bytes^0.41.6.0out of date
 cookie-factory^0.20.3.3out of date
 failure^0.10.1.8up to date
 futures^0.10.3.30out of date
 get_if_addrs^0.50.5.3up to date
 log^0.40.4.21up to date
 lru ⚠️^0.10.12.3out of date
 nom^3.27.1.3out of date
 parking_lot^0.70.12.1out of date
 sodiumoxide^0.20.2.7up to date
 tokio ⚠️^0.11.37.0out of date
 tokio-codec^0.10.1.2up to date

Dev dependencies

(4 total, 2 outdated)

CrateRequiredLatestStatus
 env_logger^0.60.11.3out of date
 hex^0.30.4.3out of date
 tokio-executor^0.10.1.10up to date
 tokio-timer^0.20.2.13up to 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.

lru: Use after free in lru crate

RUSTSEC-2021-0130

Lru crate has use after free vulnerability.

Lru crate has two functions for getting an iterator. Both iterators give references to key and value. Calling specific functions, like pop(), will remove and free the value, and but it's still possible to access the reference of value which is already dropped causing use after free.