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

Crate logos

Dependencies

(2 total, 2 outdated, 1 insecure)

CrateRequiredLatestStatus
 logos-derive^0.7.70.14.0out of date
 toolshed ⚠️^0.60.8.1insecure

Security Vulnerabilities

toolshed: CopyCell lacks bounds on its Send trait allowing for data races

RUSTSEC-2020-0136

CopyCell<T> is a Cell-like type that is implemented for any type T that is Copyable. It's Send trait has no bounds on the contained type.

As not all Copyable types are thread safe, for example non-mutable references implement the Copy trait, it is possible to send references to types with interior mutability such as Cell across threads and cause data races.