-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
55 lines (44 loc) · 1.49 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
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "hyperium-fuzz-utils"
version = "0.1.0"
edition = "2021"
[dependencies]
rand = "0.8"
rand_pcg = "0.3"
arbitrary = { version = "1", features = ["derive"] }
hpack = { git = "https://github.com/mlalic/hpack-rs.git", rev = "refs/pull/7/head" }
bytes = "1"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
pin-project-lite = "0.2.4"
tokio = { version = "1", features = ["full"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing = "*"
serde = { version = "1", features = ["derive"] }
# serde_bytes = "0.11.9"
bincode = "1.3.3"
# lain = { git = "https://github.com/landaire/lain.git", rev = "0fb4a5b" }
# in-scope libraries
h2 = { path = "../h2/" }
h2-support = { path = "../h2/tests/h2-support" }
http = { path = "../http/" }
http-body = { path = "../http-body/http-body" }
http-body-util = { path = "../http-body/http-body-util" }
httparse = { path = "../httparse/" }
httpdate = { path = "../httpdate" }
hyper = { path = "../hyper/", features = ["full"] }
[patch.crates-io]
http-body-util = { path = "../http-body/http-body-util" }
http-body = { path = "../http-body/http-body" }
http = { path = "../http" }
h2 = { path = "../h2", features = ['unstable'] }
httparse = { path = "../httparse" }
httpdate = { path = "../httpdate" }
hyper = { path = "../hyper/" }
[[bin]]
name = "f0_http_gen"
path = "./src/tools/f0_http_gen.rs"
[[bin]]
name = "h2_fuzz_client_test"
path = "./src/tools/h2_fuzz_client_test.rs"
[profile.release]
debug = true