[package] name = "s2n-quic-transport" version = "0.25.0" description = "Internal crate used by s2n-quic" repository = "https://github.com/aws/s2n-quic" authors = ["AWS s2n"] edition = "2021" rust-version = "1.63" license = "Apache-2.0" # Exclude corpus files when publishing to crates.io exclude = ["corpus.tar.gz"] [features] default = ["std"] std = ["futures-channel/std"] [dependencies] bytes = { version = "1", default-features = false } futures-channel = { version = "0.3", default-features = false, features = ["alloc"] } futures-core = { version = "0.3", default-features = false, features = ["alloc"] } hashbrown = "0.13" intrusive-collections = "0.9" once_cell = "1" s2n-codec = { version = "=0.6.1", path = "../../common/s2n-codec", features = ["bytes"], default-features = false } s2n-quic-core = { version = "=0.25.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false } siphasher = "0.3" smallvec = { version = "1", default-features = false } [dev-dependencies] bolero = "0.9" futures-test = "0.3" # For testing Waker interactions insta = { version = "1", features = ["json"] } s2n-codec = { path = "../../common/s2n-codec", features = ["testing"] } s2n-quic-core = { path = "../s2n-quic-core", features = ["testing"] }