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 livesplit-core

Dependencies

(31 total, 2 outdated)

CrateRequiredLatestStatus
 base64-simd^0.8.00.8.0up to date
 bytemuck^1.9.11.25.0up to date
 bytemuck_derive^1.4.11.10.2up to date
 cfg-if^1.0.01.0.4up to date
 itoa^1.0.31.0.17up to date
 time^0.3.470.3.47up to date
 hashbrown^0.16.00.16.1up to date
 libm^0.2.10.2.16up to date
 memchr^2.3.42.8.0up to date
 simdutf8^0.1.50.1.5up to date
 serde^1.0.1861.0.228up to date
 serde_derive^1.0.1861.0.228up to date
 serde_json^1.0.601.0.149up to date
 sha2^0.10.80.10.9up to date
 slab^0.4.90.4.12up to date
 smallstr^0.3.00.3.1up to date
 snafu^0.8.00.9.0out of date
 image^0.25.00.25.10up to date
 cosmic-text^0.14.10.18.2out of date
 tiny-skia^0.12.00.12.0up to date
 tiny-skia-path^0.12.00.12.0up to date
 foldhash^0.2.00.2.0up to date
 arc-swap^1.7.11.8.2up to date
 log^0.4.140.4.29up to date
 reqwest^0.13.20.13.2up to date
 js-sys^0.3.550.3.91up to date
 wasm-bindgen^0.2.780.2.114up to date
 wasm-bindgen-futures^0.4.280.4.64up to date
 web-sys^0.3.280.3.91up to date
 windows-sys^0.61.00.61.2up to date
 libc^0.2.1010.2.183up to date

Dev dependencies

(3 total, 1 outdated)

CrateRequiredLatestStatus
 seahash^4.1.04.1.0up to date
 winreg^0.55.00.55.0up to date
 criterion^0.7.00.8.2out of date

Crate livesplit-hotkey

Dependencies

(13 total, 1 outdated)

CrateRequiredLatestStatus
 cfg-if^1.0.01.0.4up to date
 serde^1.0.1861.0.228up to date
 bitflags^2.0.12.11.0up to date
 windows-sys^0.61.00.61.2up to date
 crossbeam-channel^0.5.60.5.15up to date
 evdev^0.13.10.13.2up to date
 mio^1.0.21.1.1up to date
 nix^0.30.10.31.2out of date
 promising-future^0.2.40.2.4up to date
 x11-dl^2.20.02.21.0up to date
 wasm-bindgen^0.2.540.2.114up to date
 web-sys^0.3.280.3.91up to date
 js-sys^0.3.280.3.91up to date

Crate livesplit-title-abbreviations

No external dependencies! 🙌

Crate livesplit-auto-splitting

Dependencies

(17 total, 4 outdated, 3 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.451.0.102up to date
 arc-swap^1.6.01.8.2up to date
 async-trait^0.1.730.1.89up to date
 bstr^1.10.01.12.1up to date
 bytemuck^1.14.01.25.0up to date
 bytes ⚠️^1.6.11.11.1maybe insecure
 indexmap^2.0.22.13.0up to date
 proc-maps^0.4.00.4.0up to date
 read-process-memory^0.1.40.1.6up to date
 slotmap^1.0.21.1.1up to date
 snafu^0.8.00.9.0out of date
 sysinfo^0.37.00.38.4out of date
 time ⚠️^0.3.30.3.47maybe insecure
 tokio^1.47.11.50.0up to date
 wasmtime ⚠️^36.0.242.0.1out of date
 wasmtime-wasi^36.0.242.0.1out of date
 windows-sys^0.61.00.61.2up to date

Crate livesplit-core-capi

Dependencies

(6 total, 1 possibly insecure)

CrateRequiredLatestStatus
 serde_json^1.0.81.0.149up to date
 time ⚠️^0.3.40.3.47maybe insecure
 simdutf8^0.1.50.1.5up to date
 wasm-bindgen^0.2.780.2.114up to date
 wasm-bindgen-futures^0.4.280.4.64up to date
 web-sys^0.3.280.3.91up to date

Crate bindings

Dependencies

(3 total, all up-to-date)

CrateRequiredLatestStatus
 heck^0.5.00.5.0up to date
 clap^4.0.24.5.60up to date
 syn^2.0.02.0.117up to date

Security Vulnerabilities

wasmtime: Wasmtime segfault or unused out-of-sandbox load with `f64.copysign` operator on x86-64

RUSTSEC-2026-0006

This is an entry in the RustSec database for the Wasmtime security advisory located at https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-vc8c-j3xm-xj73 For more information see the GitHub-hosted security advisory.

bytes: Integer overflow in `BytesMut::reserve`

RUSTSEC-2026-0007

In the unique reclaim path of BytesMut::reserve, the condition

if v_capacity >= new_cap + offset

uses an unchecked addition. When new_cap + offset overflows usize in release builds, this condition may incorrectly pass, causing self.cap to be set to a value that exceeds the actual allocated capacity. Subsequent APIs such as spare_capacity_mut() then trust this corrupted cap value and may create out-of-bounds slices, leading to UB.

This behavior is observable in release builds (integer overflow wraps), whereas debug builds panic due to overflow checks.

PoC

use bytes::*;

fn main() {
    let mut a = BytesMut::from(&b"hello world"[..]);
    let mut b = a.split_off(5);

    // Ensure b becomes the unique owner of the backing storage
    drop(a);

    // Trigger overflow in new_cap + offset inside reserve
    b.reserve(usize::MAX - 6);

    // This call relies on the corrupted cap and may cause UB & HBO
    b.put_u8(b'h');
}

Workarounds

Users of BytesMut::reserve are only affected if integer overflow checks are configured to wrap. When integer overflow is configured to panic, this issue does not apply.

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.