[package] name = "kvarn-quinn-proto" # name = "quinn-proto" version = "0.11.0-alpha1" edition = "2021" rust-version = "1.65" license = "MIT OR Apache-2.0" repository = "https://github.com/quinn-rs/quinn" description = "Temporary Kvarn fork: State machine for the QUIC transport protocol" keywords = ["quic"] categories = [ "network-programming", "asynchronous" ] workspace = ".." [package.metadata.docs.rs] all-features = true [badges] maintenance = { status = "experimental" } [features] default = ["tls-rustls", "log"] tls-rustls = ["rustls", "ring"] # Provides `ClientConfig::with_platform_verifier()` convenience method platform-verifier = ["rustls-platform-verifier"] # Write logs via the `log` crate when no `tracing` subscriber exists log = ["tracing/log"] [dependencies] arbitrary = { version = "1.0.1", features = ["derive"], optional = true } bytes = "1" rustc-hash = "1.1" rand = "0.8" ring = { version = "0.16.7", optional = true } rustls = { version = "0.21.0", default-features = false, features = ["quic"], optional = true } rustls-platform-verifier = { version = "0.1.1", optional = true } slab = "0.4" thiserror = "1.0.21" tinyvec = { version = "1.1", features = ["alloc"] } tracing = "0.1.10" [dev-dependencies] assert_matches = "1.1" hex-literal = "0.4.0" rcgen = "0.12.0" tracing-subscriber = { version = "0.3.0", default-features = false, features = ["env-filter", "fmt", "ansi", "time", "local-time"] } lazy_static = "1"