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 neovide

Dependencies

(60 total, 9 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.951.0.102up to date
 approx^0.5.10.5.1up to date
 async-trait^0.1.830.1.89up to date
 backtrace^0.3.740.3.76up to date
 clap^4.5.234.5.60up to date
 rustc-hash^2.0.02.1.1up to date
 copypasta^0.10.20.10.2up to date
 csscolorparser^0.7.00.8.2out of date
 derive-new^0.7.00.7.0up to date
 dirs^6.0.06.0.0up to date
 flexi_logger^0.31.20.31.8up to date
 futures^0.3.310.3.32up to date
 gl^0.14.00.14.0up to date
 glutin^0.32.30.32.3up to date
 glutin-winit^0.5.00.5.0up to date
 glamour^0.18.00.18.0up to date
 image^0.25.50.25.9up to date
 indoc^2.0.52.0.7up to date
 itertools^0.14.00.14.0up to date
 log^0.4.220.4.29up to date
 lru^0.16.30.16.3up to date
 mundy^0.2.20.2.2up to date
 notify-debouncer-full^0.6.00.7.0out of date
 num^0.4.30.4.3up to date
 nvim-rs^0.9.20.9.2up to date
 parking_lot^0.12.30.12.5up to date
 rand^0.9.00.10.0out of date
 raw-window-handle^0.6.20.6.2up to date
 rmpv^1.3.01.3.1up to date
 serde^1.0.2161.0.228up to date
 serde_json^1.0.1341.0.149up to date
 spin_sleep^1.3.01.3.3up to date
 unicode-segmentation^1.12.01.12.0up to date
 which^7.0.18.0.0out of date
 winit=0.30.120.30.13out of date
 regex^1.11.11.12.3up to date
 strum^0.27.20.28.0out of date
 swash^0.2.10.2.6up to date
 time ⚠️^0.3.370.3.47maybe insecure
 tokio^1.49.01.50.0up to date
 tokio-util^0.7.180.7.18up to date
 toml^0.9.51.0.3+spec-1.1.0out of date
 tracy-client-sys^0.27.00.28.0out of date
 xdg^3.0.03.0.0up to date
 skia-safe^0.93.00.93.1up to date
 windows^0.62.00.62.2up to date
 windows-registry^0.6.10.6.1up to date
 wslpath-rs^0.20.2.0up to date
 objc2^0.6.10.6.4up to date
 objc2-core-foundation^0.3.10.3.2up to date
 objc2-foundation^0.3.10.3.2up to date
 objc2-app-kit^0.3.10.3.2up to date
 objc2-quartz-core^0.3.10.3.2up to date
 objc2-core-video^0.3.10.3.2up to date
 objc2-core-graphics^0.3.10.3.2up to date
 objc2-metal^0.3.10.3.2up to date
 uzers^0.12.10.12.2up to date
 shlex^1.3.01.3.0up to date
 rustix^1.0.81.1.4up to date
 fork^0.4.00.6.0out of date

Dev dependencies

(2 total, all up-to-date)

CrateRequiredLatestStatus
 scoped-env^2.1.02.1.0up to date
 serial_test^3.2.03.4.0up to date

Build dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 winres^0.1.120.1.12up to date

Crate neovide-derive

Dependencies

(3 total, 1 outdated)

CrateRequiredLatestStatus
 syn^2.02.0.117up to date
 quote^1.01.0.45up to date
 convert_case^0.8.00.11.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.