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 parry3d-f64

Dependencies

(26 total, 5 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 approx^0.50.5.1up to date
 arrayvec^0.70.7.8up to date
 bitflags^2.32.13.1up to date
 bytemuck^11.25.2up to date
 downcast-rs^22.0.2up to date
 either^11.18.0up to date
 ena^0.14.30.14.4up to date
 foldhash^0.20.2.0up to date
 glamx^0.20.3.0out of date
 hashbrown^0.160.17.1out of date
 indexmap^22.14.0up to date
 log^0.40.4.34up to date
 num-derive^0.40.5.1out of date
 num-traits^0.20.2.19up to date
 obj^0.10.20.10.2up to date
 ordered-float^55.5.0up to date
 rayon^11.12.0up to date
 rkyv ⚠️^0.80.8.18maybe insecure
 rstar^0.12.00.13.0out of date
 serde^1.01.0.229up to date
 serde_arrays^0.20.2.0up to date
 simba^0.90.10.2out of date
 slab^0.40.4.12up to date
 smallvec ⚠️^11.15.2maybe insecure
 spade^2.92.15.1up to date
 thiserror^22.0.20up to date

Dev dependencies

(3 total, 2 outdated)

CrateRequiredLatestStatus
 oorandom^1111.1.5up to date
 ptree^0.4.00.5.2out of date
 rand^0.90.10.2out of date

Security Vulnerabilities

smallvec: Buffer overflow in SmallVec::insert_many

RUSTSEC-2021-0003

A bug in the SmallVec::insert_many method caused it to allocate a buffer that was smaller than needed. It then wrote past the end of the buffer, causing a buffer overflow and memory corruption on the heap.

This bug was only triggered if the iterator passed to insert_many yielded more items than the lower bound returned from its size_hint method.

The flaw was corrected in smallvec 0.6.14 and 1.6.1, by ensuring that additional space is always reserved for each item inserted. The fix also simplified the implementation of insert_many to use less unsafe code, so it is easier to verify its correctness.

Thank you to Yechan Bae (@Qwaz) and the Rust group at Georgia Tech’s SSLab for finding and reporting this bug.

rkyv: Crafted archives can cause a use-after-free during deserialization

RUSTSEC-2026-0233

Insufficient archive range validation could allow a crafted archive to reach ArchivedString::deserialize with an invalid pointer. A reported reproducer used rkyv::from_bytes to deserialize a struct containing strings, a vector, a box, and an optional hash map. AddressSanitizer detected a heap use-after-free during string deserialization.

The flaw could be triggered through the safe checked deserialization API when processing malicious archive bytes. Version 0.8.17 rejects the malformed archive during validation. Users who process untrusted archives should upgrade to 0.8.17 or later.

rkyv: Insufficient archive validation can cause out-of-bounds reads in archives containing hash tables

RUSTSEC-2026-0234

The archive validator could accept certain malformed relative pointers and invalid ArchivedHashTable states. In particular, the hash table verifier did not ensure that the number of occupied buckets matched the table's declared length.

A crafted archive could pass the checks performed by the safe rkyv::access and rkyv::from_bytes APIs and then cause an out-of-bounds read in later validation, lookup, or deserialization. Depending on the input, this could perform scalar or SIMD reads outside the archive buffer or crash the process.

Version 0.8.17 strengthens archive range validation and rejects hash tables whose number of occupied buckets does not match their declared length. Users who process untrusted archives should upgrade to 0.8.17 or later.

rkyv: Insufficient archive validation can cause out-of-bounds reads in archives containing Rc/Arc

RUSTSEC-2026-0235

Shared pointer validation keyed already-validated pointees by their address and type, but did not include pointer metadata. For unsized pointees, an archive could therefore contain multiple Rc, Arc, or weak pointers that shared a data address but used different metadata, such as different slice lengths.

Once the first pointer had been validated, later pointers to the same address skipped pointee validation. The safe checked rkyv::access API could consequently return a slice with a forged length, allowing safe indexing to read out of bounds. The same validation bypass was reachable through checked deserialization with rkyv::from_bytes.

Version 0.8.17 includes pointer metadata in shared pointer validation and rejects conflicting metadata. The 0.7 series is also affected but is no longer supported by upstream. Users who process untrusted archives should upgrade to 0.8.17 or later.