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 ratatui

Dependencies

(16 total, 8 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 bitflags^2.32.11.0up to date
 cassowary^0.30.3.0up to date
 crossterm^0.270.29.0out of date
 document-features^0.2.70.2.12up to date
 indoc^2.02.0.7up to date
 itertools^0.120.14.0out of date
 lru^0.12.00.16.3out of date
 paste^1.0.21.0.15up to date
 serde^11.0.228up to date
 stability^0.1.10.2.1out of date
 strum^0.250.28.0out of date
 termion^2.04.0.6out of date
 termwiz^0.20.00.23.3out of date
 time ⚠️^0.3.110.3.47maybe insecure
 unicode-segmentation^1.101.12.0up to date
 unicode-width^0.10.2.2out of date

Dev dependencies

(10 total, 2 outdated)

CrateRequiredLatestStatus
 anyhow^1.0.711.0.102up to date
 argh^0.1.120.1.19up to date
 better-panic^0.3.00.3.0up to date
 cargo-husky^1.5.01.5.0up to date
 color-eyre^0.6.20.6.5up to date
 criterion^0.5.10.8.2out of date
 fakeit^1.11.4.1up to date
 palette^0.7.30.7.6up to date
 pretty_assertions^1.4.01.4.1up to date
 rand^0.8.50.10.0out of 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.