This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate gix-archive

Dependencies

(11 total, 6 outdated, 1 insecure)

CrateRequiredLatestStatus
 bstr^1.5.01.13.1up to date
 document-features^0.2.00.2.12up to date
 flate2^1.0.261.1.10up to date
 gix-date ⚠️^0.8.30.16.0insecure
 gix-object^0.41.00.64.1out of date
 gix-path^0.10.40.12.6out of date
 gix-worktree-stream^0.9.00.36.1out of date
 tar^0.4.380.4.46up to date
 thiserror^1.0.262.0.20out of date
 time^0.3.230.3.55up to date
 zip^0.6.68.6.0out 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.