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

Dependencies

(8 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 bstr^1.3.01.12.1up to date
 document-features^0.2.00.2.12up to date
 gix-date ⚠️^0.9.20.15.0out of date
 gix-utils^0.1.140.3.1out of date
 itoa^1.0.11.0.17up to date
 serde^1.0.1141.0.228up to date
 thiserror^2.0.02.0.18up to date
 winnow^0.60.7.15out of date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 pretty_assertions^1.0.01.4.1up 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.