-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
74 lines (64 loc) · 2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
authors = ["katelyn martin <[email protected]>"]
description = "a small tool for load-testing http/2 servers"
edition = "2021"
license = "MIT"
name = "aquarius"
publish = false
repository = "https://github.com/cratelyn/aquarius"
version = "0.1.0"
[dependencies]
clap = { workspace = true }
comfy-table = { workspace = true }
futures = { workspace = true }
http = { workspace = true }
http-body-util = { workspace = true }
hyper = { workspace = true }
hyper-util = { workspace = true }
lazy_static = { workspace = true }
pin-project = { workspace = true }
textplots = { workspace = true }
tap = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
url = { workspace = true }
[dev-dependencies]
aquarius-test-server = { workspace = true }
aquarius-test-subscriber = { workspace = true }
aquarius-test-timeout = { workspace = true }
# === workspace ===
[workspace]
members = ["crates/test-server", "crates/test-subscriber", "crates/test-timeout"]
[workspace.dependencies]
aquarius-test-server = { path = "./crates/test-server" }
aquarius-test-subscriber = { path = "./crates/test-subscriber" }
aquarius-test-timeout = { path = "./crates/test-timeout" }
comfy-table = { version = "7.1.1" }
futures = { version = "0.3.30" }
http = { version = "1.1.0" }
http-body-util = { version = "0.1.2" }
lazy_static = { version = "1.5.0" }
pin-project = { version = "1.1.5" }
textplots = { version = "0.8.6" }
tap = { version = "1.0.1" }
tracing = { version = "0.1.40" }
url = { version = "2.5.2" }
[workspace.dependencies.clap]
version = "4.5.8"
features = ["derive"]
[workspace.dependencies.hyper]
version = "1.4.0"
default-features = false
features = ["client", "http2", "server"]
[workspace.dependencies.hyper-util]
version = "0.1.6"
default-features = false
features = ["tokio"]
[workspace.dependencies.tokio]
version = "1.38.0"
default-features = false
features = ["macros", "rt", "rt-multi-thread"]
[workspace.dependencies.tracing-subscriber]
version = "0.3.18"
features = ["env-filter"]