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-blame

Dependencies

(11 total, 8 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 gix-commitgraph^0.27.00.37.1out of date
 gix-date ⚠️^0.9.40.15.6out of date
 gix-diff^0.51.00.65.0out of date
 gix-hash^0.17.00.25.1out of date
 gix-object^0.48.00.62.0out of date
 gix-revwalk^0.19.00.33.0out of date
 gix-trace^0.1.120.1.20up to date
 gix-traverse^0.45.00.59.0out of date
 gix-worktree^0.40.00.54.0out of date
 smallvec^1.10.01.15.2up to date
 thiserror^2.0.02.0.19up to 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.