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 gix-traverse

Dependencies

(8 total, 7 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 gix-commitgraph^0.24.00.34.0out of date
 gix-date ⚠️^0.8.30.15.0out of date
 gix-hash^0.14.10.22.1out of date
 gix-hashtable^0.5.10.12.0out of date
 gix-object^0.41.00.57.0out of date
 gix-revwalk^0.12.00.28.0out of date
 smallvec^1.10.01.15.1up to date
 thiserror^1.0.322.0.18out of date

Security Vulnerabilities

gix-date: Non-utf8 String can be created with `TimeBuf::as_str`

RUSTSEC-2025-0140

The function gix_date::parse::TimeBuf::as_str can create an illegal string containing non-utf8 characters. This violates the safety invariant of TimeBuf and can lead to undefined behavior when consuming the string.

The bug can be prevented by adding str::from_utf8 to the function TimeBuf::write.