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 http2

Dependencies

(13 total, 1 possibly insecure)

CrateRequiredLatestStatus
 atomic-waker^1.0.01.1.2up to date
 bytes^1.11.11.12.1up to date
 fnv^1.0.51.0.7up to date
 futures-core^0.30.3.34up to date
 futures-sink^0.30.3.34up to date
 http^1.4.21.5.0up to date
 indexmap^22.14.2up to date
 parking_lot^0.12.40.12.5up to date
 slab^0.4.20.4.12up to date
 smallvec^1.15.01.16.0up to date
 tokio ⚠️^11.53.1maybe insecure
 tokio-util^0.7.10.7.19up to date
 tracing^0.10.1.44up to date

Dev dependencies

(12 total, 2 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 env_logger^0.100.11.11out of date
 h2 ⚠️^0.40.4.19maybe insecure
 hex^0.4.30.4.3up to date
 quickcheck^1.0.31.1.0up to date
 rand^0.8.40.10.2out of date
 serde^1.0.01.0.229up to date
 serde_json^1.0.01.0.151up to date
 tokio ⚠️^11.53.1maybe insecure
 tokio-rustls^0.260.26.5up to date
 tracing^0.10.1.44up to date
 walkdir^2.3.22.5.0up to date
 webpki-roots^11.0.9up to date

Security Vulnerabilities

tokio: reject_remote_clients Configuration corruption

RUSTSEC-2023-0001

On Windows, configuring a named pipe server with pipe_mode will force ServerOptions::reject_remote_clients as false.

This drops any intended explicit configuration for the reject_remote_clients that may have been set as true previously.

The default setting of reject_remote_clients is normally true meaning the default is also overridden as false.

Workarounds

Ensure that pipe_mode is set first after initializing a ServerOptions. For example:

let mut opts = ServerOptions::new();
opts.pipe_mode(PipeMode::Message);
opts.reject_remote_clients(true);

h2: h2 unbounded empty DATA frames

RUSTSEC-2026-0258

The h2 crate, used internally by hyper, had a flaw that would accept and queue empty DATA frames without limit. If streams were not actively drained, this could lead to unbounded memory usage, or a panic if the length overflows.

Low severity.

Patched in v0.4.16.