@@ -12,7 +12,12 @@ exclude = ["corpus.tar.gz"]
12
12
13
13
[features ]
14
14
default = [" tokio" ]
15
- testing = [" bolero-generator" , " s2n-quic-core/testing" , " s2n-quic-platform/testing" , " tracing-subscriber" ]
15
+ testing = [
16
+ " bolero-generator" ,
17
+ " s2n-quic-core/testing" ,
18
+ " s2n-quic-platform/testing" ,
19
+ " tracing-subscriber" ,
20
+ ]
16
21
tokio = [" tokio/io-util" , " tokio/net" , " tokio/rt-multi-thread" , " tokio/time" ]
17
22
18
23
[dependencies ]
@@ -41,7 +46,9 @@ hashbrown = "0.15"
41
46
thiserror = " 2"
42
47
tokio = { version = " 1" , default-features = false , features = [" sync" ] }
43
48
tracing = " 0.1"
44
- tracing-subscriber = { version = " 0.3" , features = [" env-filter" ], optional = true }
49
+ tracing-subscriber = { version = " 0.3" , features = [
50
+ " env-filter" ,
51
+ ], optional = true }
45
52
zerocopy = { version = " 0.7" , features = [" derive" ] }
46
53
zeroize = " 1"
47
54
parking_lot = " 0.12"
@@ -53,13 +60,12 @@ bolero-generator = "0.13"
53
60
insta = " 1"
54
61
s2n-codec = { path = " ../../common/s2n-codec" , features = [" testing" ] }
55
62
s2n-quic-core = { path = " ../../quic/s2n-quic-core" , features = [" testing" ] }
56
- s2n-quic-platform = { path = " ../../quic/s2n-quic-platform" , features = [" testing" ] }
63
+ s2n-quic-platform = { path = " ../../quic/s2n-quic-platform" , features = [
64
+ " testing" ,
65
+ ] }
57
66
tokio = { version = " 1" , features = [" full" ] }
58
67
tracing-subscriber = { version = " 0.3" , features = [" env-filter" ] }
59
68
60
69
[lints .rust .unexpected_cfgs ]
61
70
level = " warn"
62
- check-cfg = [
63
- ' cfg(kani)' ,
64
- ' cfg(todo)' ,
65
- ]
71
+ check-cfg = [' cfg(fuzzing)' , ' cfg(kani)' , ' cfg(todo)' ]
0 commit comments