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 puny2d

Dependencies

(5 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 font-loader~0.11.00.11.0up to date
 ttf-parser~0.12.00.20.0out of date
 png~0.16.80.17.13out of date
 lru ⚠️~0.6.50.12.3out of date
 rayon~1.5.11.10.0out of date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 microbench~0.5.00.5.0up to date

Security Vulnerabilities

lru: Use after free in lru crate

RUSTSEC-2021-0130

Lru crate has use after free vulnerability.

Lru crate has two functions for getting an iterator. Both iterators give references to key and value. Calling specific functions, like pop(), will remove and free the value, and but it's still possible to access the reference of value which is already dropped causing use after free.