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 actix-utils

Dependencies

(8 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 actix-codec ⚠️^0.1.10.5.2out of date
 actix-service^0.4.02.0.2out of date
 bytes^0.41.6.0out of date
 either^1.5.21.11.0up to date
 futures^0.1.250.3.30out of date
 log^0.40.4.21up to date
 tokio-current-thread^0.1.40.1.7up to date
 tokio-timer^0.2.80.2.13up to date

Dev dependencies

(1 total, 1 outdated)

CrateRequiredLatestStatus
 actix-rt^0.2.22.9.0out of date

Security Vulnerabilities

actix-codec: Use-after-free in Framed due to lack of pinning

RUSTSEC-2020-0049

Affected versions of this crate did not require the buffer wrapped in Framed to be pinned, but treated it as if it had a fixed location in memory. This may result in a use-after-free.

The flaw was corrected by making the affected functions accept Pin<&mut Self> instead of &mut self.