-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
107 lines (100 loc) · 3.2 KB
/
Cargo.toml
File metadata and controls
107 lines (100 loc) · 3.2 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[package]
name = "lading"
version = "0.25.6"
authors = [
"Brian L. Troutwine <brian.troutwine@datadoghq.com>",
"George Hahn <george.hahn@datadoghq.com>",
"Scott Opell <scott.opell@datadoghq.com>",
"Caleb Metz <caleb.metz@datadoghq.com>",
]
edition = "2024"
license = "MIT"
repository = "https://github.com/datadog/lading/"
keywords = ["random_test", "generator"]
categories = ["development-tools::profiling"]
description = "A tool for load testing daemons."
[dependencies]
lading-capture = { version = "0.2", path = "../lading_capture" }
lading-payload = { version = "0.1", path = "../lading_payload" }
lading-throttle = { version = "0.1", path = "../lading_throttle" }
lading-signal = { version = "0.1", path = "../lading_signal" }
async-compression = { version = "0.4.20", features = ["tokio", "zstd"] }
average = { version = "0.16", default-features = false, features = [] }
bollard = { version = "0.18", default-features = false, features = ["pipe", "http"] }
byte-unit = { workspace = true }
bytes = { workspace = true, features = ["std"] }
clap = { version = "4.5", default-features = false, features = [
"std",
"suggestions",
"derive",
"help",
] }
flate2 = { version = "1.1.0", default-features = false, features = [
"rust_backend",
] }
futures = "0.3.31"
fuser = { version = "0.15", optional = true }
heck = { version = "0.5", default-features = false }
http = { workspace = true }
http-body-util = { workspace = true }
http-serde = "2.1"
hyper = { workspace = true, features = ["client", "http1", "http2", "server"] }
hyper-util = { workspace = true, features = ["default", "client", "client-legacy"] }
is_executable = "1.0.4"
metrics = { workspace = true }
metrics-exporter-prometheus = { workspace = true }
metrics-util = { workspace = true }
nix = { version = "0.29", default-features = false, features = [
"process",
"signal",
] }
num_cpus = { version = "1.16" }
num-traits = { version = "0.2", default-features = false }
once_cell = { workspace = true }
rand = { workspace = true, default-features = false, features = [
"small_rng",
"std",
"std_rng",
"thread_rng",
] }
regex = { version = "1.11" }
reqwest = { version = "0.12", default-features = false, features = ["json", "default-tls"] }
rustc-hash = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_qs = { version = "0.13", default-features = false }
serde_yaml = { version = "0.9" }
thiserror = { workspace = true }
tokio = { workspace = true, features = [
"rt",
"rt-multi-thread",
"macros",
"fs",
"io-util",
"process",
"signal",
"time",
"net",
] }
tokio-stream = { version = "0.1", features = ["io-util"] }
tokio-util = { version = "0.7", features = ["io"] }
tonic = { version = "0.12" }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3", features = ["std", "env-filter"] }
uuid = { workspace = true }
quanta = { version = "0.12", default-features = false, features = [] }
zstd = "0.13.3"
[target.'cfg(target_os = "linux")'.dependencies]
procfs = { version = "0.17", default-features = false, features = [] }
async-pidfd = "0.1"
[dev-dependencies]
tempfile = "3.17"
warp = "0.3"
proptest = "1.6"
[features]
default = []
logrotate_fs = ["fuser"]
[lib]
doctest = false
[[bin]]
name = "lading"