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 mc-server-wrapper

Dependencies

(24 total, 11 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 structopt^0.30.3.26up to date
 tokio^1.24.11.50.0up to date
 futures^0.30.3.32up to date
 twilight-http^0.15.10.17.1out of date
 twilight-gateway^0.15.10.17.1out of date
 twilight-cache-inmemory^0.15.10.17.1out of date
 twilight-model^0.15.10.17.1out of date
 twilight-mention^0.15.10.17.0out of date
 minecraft-chat^0.10.1.0up to date
 log^0.40.4.29up to date
 fern^0.60.7.1out of date
 log-panics^2.02.1.0up to date
 time ⚠️^0.3.170.3.47maybe insecure
 once_cell^1.51.21.4up to date
 scopeguard^1.11.2.0up to date
 anyhow^1.01.0.102up to date
 crossterm^0.27.00.29.0out of date
 ratatui^0.23.00.30.0out of date
 unicode-width^0.10.2.2out of date
 textwrap^0.16.00.16.2up to date
 toml^0.8.01.1.0+spec-1.1.0out of date
 serde^1.01.0.228up to date
 serde_derive^1.01.0.228up to date
 notify-debouncer-mini^0.4.10.7.0out of date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 expect-test^1.01.5.1up to date

Crate mc-server-wrapper-lib

Dependencies

(5 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 time ⚠️^0.3.170.3.47maybe insecure
 tokio^1.24.11.50.0up to date
 thiserror^1.02.0.18out of date
 log^0.40.4.29up to date
 once_cell^1.51.21.4up to date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 structopt^0.30.3.26up 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.