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 compio-quic

Dependencies

(19 total, 2 possibly insecure)

CrateRequiredLatestStatus
 compio-buf^0.8.30.8.3up to date
 compio-io^0.10.10.10.1up to date
 compio-log^0.2.10.2.1up to date
 compio-net^0.12.50.12.5up to date
 compio-runtime^0.12.60.12.6up to date
 flume^0.12.00.12.0up to date
 futures-util^0.3.290.3.34up to date
 h3^0.0.80.0.8up to date
 h3-datagram^0.0.20.0.2up to date
 libc^0.2.1750.2.189up to date
 quinn-proto ⚠️^0.11.130.11.17maybe insecure
 rustc-hash^2.0.02.1.3up to date
 rustls ⚠️^0.23.10.23.43maybe insecure
 rustls-native-certs^0.8.00.8.4up to date
 rustls-platform-verifier^0.7.00.7.0up to date
 synchrony^0.1.80.1.9up to date
 thiserror^2.0.32.0.20up to date
 webpki-roots^1.0.01.0.9up to date
 windows-sys^0.61.00.61.2up to date

Dev dependencies

(15 total, 1 possibly insecure)

CrateRequiredLatestStatus
 compio-dispatcher^0.11.10.11.1up to date
 compio-driver^0.12.50.12.5up to date
 compio-fs^0.12.10.12.1up to date
 compio-macros^0.2.10.2.1up to date
 compio-runtime^0.12.60.12.6up to date
 criterion^0.8.00.8.2up to date
 http^1.1.01.5.0up to date
 quinn^0.11.90.11.11up to date
 rand^0.10.00.10.2up to date
 rcgen^0.14.10.14.9up to date
 socket2^0.6.00.6.5up to date
 synchrony^0.1.80.1.9up to date
 tokio^1.33.01.53.1up to date
 tracing^0.1.410.1.44up to date
 tracing-subscriber ⚠️^0.3.180.3.23maybe insecure

Security Vulnerabilities

rustls: rustls network-reachable panic in `Acceptor::accept`

RUSTSEC-2024-0399

A bug introduced in rustls 0.23.13 leads to a panic if the received TLS ClientHello is fragmented. Only servers that use rustls::server::Acceptor::accept() are affected.

Servers that use tokio-rustls's LazyConfigAcceptor API are affected.

Servers that use tokio-rustls's TlsAcceptor API are not affected.

Servers that use rustls-ffi's rustls_acceptor_accept API are affected.

tracing-subscriber: Logging user input may result in poisoning logs with ANSI escape sequences

RUSTSEC-2025-0055

Previous versions of tracing-subscriber were vulnerable to ANSI escape sequence injection attacks. Untrusted user input containing ANSI escape sequences could be injected into terminal output when logged, potentially allowing attackers to:

  • Manipulate terminal title bars
  • Clear screens or modify terminal display
  • Potentially mislead users through terminal manipulation

In isolation, impact is minimal, however security issues have been found in terminal emulators that enabled an attacker to use ANSI escape sequences via logs to exploit vulnerabilities in the terminal emulator.

This was patched in PR #3368 to escape ANSI control characters from user input.

quinn-proto: Remote memory exhaustion in quinn-proto from unbounded out-of-order stream reassembly

RUSTSEC-2026-0185

The Assembler component that assembles unordered stream fragments into consecutive chunks of the stream incurs some overhead for non-contiguous fragments. Readers that read from a RecvStream in order (through an AsyncRead impl for example) will be sensitive to peers that send fragments while leaving out early parts of the stream, and in particular, fragments with many gaps (because these cannot be defragmented). In such a scenario, the receiving connection suffers from high buffer overhead, enabling memory exhaustion.