-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCargo.toml
39 lines (34 loc) · 964 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "s2n-codec"
version = "0.54.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.71"
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.13", default-features = false, optional = true }
byteorder = { version = "1.1", default-features = false }
bytes = { version = "1", default-features = false, optional = true }
zerocopy = { version = "0.7", features = ["derive"] }
[dev-dependencies]
bolero = "0.13"
bolero-generator = "0.13"
[package.metadata.kani]
flags = { tests = true }
unstable = { stubbing = true }
[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = [
'cfg(kani)',
]