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 kiddo

Dependencies

(21 total, 3 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 aligned-vec^0.6.10.6.4up to date
 array-init^2.12.1.0up to date
 az^1.21.3.0up to date
 cmov^0.50.5.4up to date
 csv^11.4.0up to date
 divrem^11.0.0up to date
 fixed=1.291.31.0out of date
 generator^0.8.40.8.9up to date
 half=2.4.12.7.1out of date
 las=0.9.30.11.1out of date
 num-traits^0.20.2.19up to date
 ordered-float^55.5.0up to date
 rand^0.100.10.2up to date
 rand_chacha^0.100.10.0up to date
 rayon^11.12.0up to date
 rkyv ⚠️^0.8.90.8.18maybe insecure
 serde^11.0.229up to date
 serde_derive^11.0.229up to date
 sorted-vec^0.80.8.11up to date
 tracing^0.10.1.44up to date
 tracing-subscriber ⚠️^0.30.3.23maybe insecure

Dev dependencies

(17 total, 5 outdated)

CrateRequiredLatestStatus
 bincode^23.0.0out of date
 codspeed-criterion-compat^4.05.0.1out of date
 criterion^0.70.8.2out of date
 elapsed^0.1.20.1.2up to date
 flate2^11.1.9up to date
 itertools^0.140.15.0out of date
 las^0.90.11.1out of date
 memmap^0.70.7.0up to date
 proc-macro2^11.0.107up to date
 radians^0.30.3.1up to date
 rand^0.100.10.2up to date
 rand_distr^0.60.6.0up to date
 rayon^11.12.0up to date
 rstest^0.260.26.1up to date
 serde^11.0.229up to date
 serde_json^11.0.151up to date
 ubyte^0.100.10.4up to date

Security Vulnerabilities

tracing-subscriber: Logging user input may result in poisoning logs with ANSI escape sequences

RUSTSEC-2025-0055

Previous versions of tracing-subscriber were vulnerable to ANSI escape sequence injection attacks. Untrusted user input containing ANSI escape sequences could be injected into terminal output when logged, potentially allowing attackers to:

  • Manipulate terminal title bars
  • Clear screens or modify terminal display
  • Potentially mislead users through terminal manipulation

In isolation, impact is minimal, however security issues have been found in terminal emulators that enabled an attacker to use ANSI escape sequences via logs to exploit vulnerabilities in the terminal emulator.

This was patched in PR #3368 to escape ANSI control characters from user input.

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.