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 maybe-owned-trait

Dependencies

(1 total, 1 possibly insecure)

CrateRequiredLatestStatus
 beef ⚠️^00.5.2maybe insecure

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 rand^0.8.50.8.5up to date

Security Vulnerabilities

beef: beef::Cow lacks a Sync bound on its Send trait allowing for data races

RUSTSEC-2020-0122

Affected versions of this crate did not have a T: Sync bound in the Send impl for Cow<'_, T, U>. This allows users to create data races by making Cow contain types that are (Send && !Sync) like Cell<_> or RefCell<_>.

Such data races can lead to memory corruption.

The flaw was corrected in commit d1c7658 by adding trait bounds T: Sync and T::Owned: Send to the Send impl for Cow<'_, T, U>.