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 im

Dependencies

(11 total, 7 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 arbitrary^0.41.3.2out of date
 bitmaps^23.2.1out of date
 proptest^0.91.4.0out of date
 quickcheck^0.91.0.3out of date
 rand_core^0.5.10.6.4out of date
 rand_xoshiro^0.40.6.0out of date
 rayon^11.10.0up to date
 refpool^0.40.4.3up to date
 serde^11.0.197up to date
 sized-chunks ⚠️^0.60.7.0out of date
 typenum^1.121.17.0up to date

Dev dependencies

(8 total, 4 outdated)

CrateRequiredLatestStatus
 metrohash^11.0.6up to date
 pretty_assertions^0.61.4.0out of date
 proptest^0.91.4.0out of date
 proptest-derive^0.10.4.0out of date
 rand^0.70.8.5out of date
 rayon^11.10.0up to date
 serde^11.0.197up to date
 serde_json^11.0.115up to date

Security Vulnerabilities

sized-chunks: Multiple soundness issues in Chunk and InlineArray

RUSTSEC-2020-0041

Chunk:

  • Array size is not checked when constructed with unit() and pair().
  • Array size is not checked when constructed with From<InlineArray<A, T>>.
  • Clone and insert_from are not panic-safe; A panicking iterator causes memory safety issues with them.

InlineArray:

  • Generates unaligned references for types with a large alignment requirement.