s2n-quic-transport 0.5.0

Internal crate used by s2n-quic
Documentation
[package]
name = "s2n-quic-transport"
version = "0.5.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
edition = "2021"
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.12"
intrusive-collections = "0.9"
once_cell = "1"
s2n-codec = { version = "=0.1.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
s2n-quic-core = { version = "=0.5.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
siphasher = "0.3"
smallvec = { version = "1", default-features = false }

[dev-dependencies]
bolero = "0.7"
futures-test = "0.3" # For testing Waker interactions
insta = "1"
s2n-codec = { path = "../../common/s2n-codec", features = ["testing"] }
s2n-quic-core = { path = "../s2n-quic-core", features = ["testing"] }
s2n-quic-platform = { path = "../s2n-quic-platform", features = ["testing"] }