[package] name = "s2n-codec" version = "0.6.1" 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", "bytes"] alloc = [] std = ["alloc"] testing = ["std", "generator"] checked_range_unsafe = [] generator = ["bolero-generator"] [dependencies] bolero-generator = { version = "0.9", default-features = false, optional = true } byteorder = { version = "1.1", default-features = false } bytes = { version = "1", default-features = false, optional = true } zerocopy = "0.6" zerocopy-derive = "0.3"