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 cargo-test-support

Dependencies

(22 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anstream^0.6.211.0.0out of date
 anstyle^1.0.131.0.14up to date
 anyhow^1.0.1001.0.102up to date
 cargo-test-macro^0.4.90.4.9up to date
 cargo-util^0.2.270.2.27up to date
 crates-io^0.40.170.40.17up to date
 filetime^0.2.260.2.27up to date
 flate2^1.1.51.1.9up to date
 git2^0.20.30.20.4up to date
 glob^0.3.30.3.3up to date
 itertools^0.14.00.14.0up to date
 pasetors^0.7.70.7.8up to date
 regex^1.12.21.12.3up to date
 serde^1.0.2281.0.228up to date
 serde_json^1.0.1481.0.149up to date
 snapbox^0.6.231.1.0out of date
 tar^0.4.440.4.44up to date
 time ⚠️^0.3.440.3.47maybe insecure
 toml^0.9.101.0.7+spec-1.1.0out of date
 url^2.5.72.5.8up to date
 walkdir^2.5.02.5.0up to date
 windows-sys^0.610.61.2up to date

Security Vulnerabilities

time: Denial of Service via Stack Exhaustion

RUSTSEC-2026-0009

Impact

When user-provided input is provided to any type that parses with the RFC 2822 format, a denial of service attack via stack exhaustion is possible. The attack relies on formally deprecated and rarely-used features that are part of the RFC 2822 format used in a malicious manner. Ordinary, non-malicious input will never encounter this scenario.

Patches

A limit to the depth of recursion was added in v0.3.47. From this version, an error will be returned rather than exhausting the stack.

Workarounds

Limiting the length of user input is the simplest way to avoid stack exhaustion, as the amount of the stack consumed would be at most a factor of the length of the input.