-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathCargo.toml
43 lines (39 loc) · 1.42 KB
/
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
40
41
42
43
[package]
name = "s2n-quic-transport"
version = "0.51.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"]
std = ["futures-channel/std"]
unstable_resumption = []
unstable-provider-dc = []
[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.15"
intrusive-collections = "0.9"
once_cell = "1"
s2n-codec = { version = "=0.51.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
s2n-quic-core = { version = "=0.51.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
siphasher = "1.0"
smallvec = { version = "1", default-features = false }
[dev-dependencies]
bolero.workspace = true
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"] }
[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = [
'cfg(s2n_quic_dump_on_panic)',
'cfg(feature, values("testing"))',
]