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 mqtt-codec

Dependencies

(4 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 actix-codec ⚠️^0.2.00.5.2out of date
 bitflags^1.02.5.0out of date
 bytes^0.5.21.6.0out of date
 bytestring^0.1.01.3.1out 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.