-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 810 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 810 Bytes
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
[package]
name = "h2test"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytes = "1.6.0"
clap = { version = "4.5.4", features = ["derive", "env"] }
itertools = "0.14.0"
rand = "0.10.0"
serde = { version = "1.0.200", features = ["derive"] }
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread", "sync", "time"] }
tracing = "0.1.40"
tracing-log = "0.2.0"
tracing-subscriber = "0.3.18"
h2 = "0.4.5"
hickory-resolver = { version = "0.26.0", features = ["tokio", "system-config"] }
tokio-rustls = "0.26.0"
webpki-roots = "1.0.0"
anyhow = "1.0.86"
http = "1.1.0"
chrono = "0.4.40"
humantime = "2.2.0"
[profile.release]
#opt-level = "z"
#debug = false
#lto = true
#strip = true
#codegen-units = 1