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 vga

Dependencies

(6 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 bitflags^1.2.12.5.0out of date
 conquer-once ⚠️^0.2.00.4.0out of date
 font8x8^0.2.50.3.1out of date
 num-traits^0.2.110.2.18up to date
 spinning_top^0.1.00.3.0out of date
 x86_64^0.9.60.15.1out of date

Security Vulnerabilities

conquer-once: conquer-once's OnceCell lacks Send bound for its Sync trait.

RUSTSEC-2020-0101

Affected versions of conquer-once implements Sync for its OnceCell type without restricting it to Sendable types.

This allows non-Send but Sync types such as MutexGuard to be sent across threads leading to undefined behavior and memory corruption in concurrent programs.

The issue was fixed by adding a Send constraint to OnceCell.