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

(18 total, 6 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 compio-buf^0.7.10.8.1out of date
 compio-io^0.8.40.9.1out of date
 compio-log^0.1.00.1.0up to date
 compio-net^0.10.00.11.1out of date
 compio-runtime^0.10.00.11.0out of date
 flume^0.11.00.12.0out of date
 futures-util^0.3.290.3.32up to date
 h3^0.0.80.0.8up to date
 h3-datagram^0.0.20.0.2up to date
 libc^0.2.1640.2.186up to date
 quinn-proto ⚠️^0.11.100.11.14maybe insecure
 rustc-hash^2.0.02.1.2up to date
 rustls ⚠️^0.23.10.23.40maybe insecure
 rustls-native-certs^0.8.00.8.3up to date
 rustls-platform-verifier^0.6.00.7.0out of date
 thiserror^2.0.32.0.18up to date
 webpki-roots^1.0.01.0.7up to date
 windows-sys^0.61.00.61.2up to date

Dev dependencies

(13 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 compio-dispatcher^0.9.00.10.0out of date
 compio-driver^0.10.00.11.4out of date
 compio-fs^0.10.00.11.0out of date
 compio-macros^0.1.20.1.2up to date
 compio-runtime^0.10.00.11.0out of date
 criterion^0.8.00.8.2up to date
 http^1.1.01.4.0up to date
 quinn^0.11.60.11.9up to date
 rand^0.9.00.10.1out of date
 rcgen^0.14.10.14.8up to date
 socket2^0.6.00.6.3up to date
 tokio^1.33.01.52.3up 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: Denial of service in Quinn endpoints

RUSTSEC-2026-0037

Receiving QUIC transport parameters containing invalid values could lead to a panic.

Unfortunately the maintainers did not properly assess usage of unwrap() calls in the transport parameters parsing code, and we did not have sufficient fuzzing coverage to find this issue. We have since added a fuzzing target to cover this code path.