tools/xdp/s2n-quic-xdp/Cargo.toml (33 lines of code) (raw):
[package]
name = "s2n-quic-xdp"
version = "0.57.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.75"
license = "Apache-2.0"
# Exclude corpus files when publishing to crates.io
exclude = ["corpus.tar.gz"]
[features]
default = ["tokio"]
[dependencies]
aya = { version = "0.13", default-features = false }
bitflags = "2"
errno = "0.3"
libc = "0.2"
s2n-codec = { version = "=0.57.0", path = "../../../common/s2n-codec" }
s2n-quic-core = { version = "=0.57.0", path = "../../../quic/s2n-quic-core" }
tokio = { version = "1", features = ["net"], optional = true }
[dev-dependencies]
bolero = "0.13"
futures = "0.3"
pin-project-lite = "0.2"
rand = "0.9"
s2n-quic-core = { path = "../../../quic/s2n-quic-core", features = ["testing"] }
tokio = { version = "1", features = ["full"] }
[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = [
'cfg(s2n_quic_xdp_trace)',
]