-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (56 loc) · 1.31 KB
/
Cargo.toml
File metadata and controls
64 lines (56 loc) · 1.31 KB
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
56
57
58
59
60
61
62
63
64
[package]
name = "quic_realistic_benchmarks"
version = "0.1.0"
edition = "2021"
[lib]
name = "bench_lib"
path = "src/lib.rs"
[[bin]]
name = "emulate"
path = "src/cli/emulate.rs"
[[bin]]
name = "har_parser"
path = "src/cli/har_parser.rs"
[[bin]]
name = "start_server"
path = "src/cli/start_server.rs"
[[bin]]
name = "spawn_server"
path = "src/cli/spawn_server.rs"
[[bin]]
name = "start_client"
path = "src/cli/start_client.rs"
[features]
sequentially = []
concurrently = []
concurrently_tc_global = []
concurrently_tc_global_dep-tree-init = []
concurrently_tc_global_dep-tree-init-timings = []
concurrently_tc_global_dep-tree-init-timings_low_level = []
[dependencies]
actix-web = { version = "4.9.0", features = ["rustls-0_23"] }
anyhow = "1.0.89"
async-trait = "0.1.86"
bytes = "1.9.0"
chrono = {version = "0.4.38", features = ["serde"]}
clap = { version = "4.5.20", features = ["derive"] }
csv = "1.3.0"
curl = {git = "https://github.com/florian-klein/curl-rust.git"}
dashmap = "6.1.0"
env_logger = "0.11.5"
futures = "0.3.31"
h3 = "0.0.6"
h3-quinn = "0.0.7"
har = "0.8.1"
http = "1.2.0"
indicatif = "0.17.11"
itertools = "0.14.0"
log = "0.4.22"
quinn = "0.11.6"
rand = "0.8.5"
rcgen = "0.13.2"
rustls = "0.23.23"
serde = "1.0.210"
serde_json = "1.0.128"
tempfile = "3.18.0"
tokio = { version = "1.40.0", features = ["full"] }