-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
110 lines (91 loc) · 2.27 KB
/
Cargo.toml
File metadata and controls
110 lines (91 loc) · 2.27 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
108
109
110
[package]
name = "lading-payload"
version = "0.1.0"
authors = [
"Brian L. Troutwine <brian.troutwine@datadoghq.com>",
"George Hahn <george.hahn@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]
bytes = { workspace = true }
byte-unit = { workspace = true }
opentelemetry-proto = { workspace = true }
prost = { workspace = true }
rand = { workspace = true, features = ["small_rng", "std", "std_rng"] }
rustc-hash = { workspace = true }
rmp-serde = { version = "1.3", default-features = false }
serde = { workspace = true }
serde_json = { workspace = true }
serde_tuple = { version = "1.1", default-features = false }
thiserror = { workspace = true }
serde_yaml = { workspace = true }
time = { version = "0.3", features = ["formatting", "parsing", "std"] }
tracing = { workspace = true }
tokio = { workspace = true }
arbitrary = { version = "1", optional = true, features = ["derive"] }
enum_dispatch = { workspace = true }
barkus-core = { workspace = true }
barkus-ebnf = { workspace = true }
barkus-peg = { workspace = true }
barkus-antlr = { workspace = true }
rand_0_10 = { package = "rand", version = "0.10", default-features = false }
[dev-dependencies]
proptest = { workspace = true }
proptest-derive = { workspace = true }
criterion = { version = "0.8", features = ["html_reports"] }
rustc-hash = { workspace = true }
tempfile = { workspace = true }
[features]
default = []
fuzz = ["arbitrary"]
[lib]
doctest = false
[[bench]]
name = "apache_common"
harness = false
[[bench]]
name = "ascii"
harness = false
[[bench]]
name = "block"
harness = false
[[bench]]
name = "datadog_logs"
harness = false
[[bench]]
name = "dogstatsd"
harness = false
[[bench]]
name = "fluent"
harness = false
[[bench]]
name = "json"
harness = false
[[bench]]
name = "opentelemetry_log"
harness = false
[[bench]]
name = "opentelemetry_metric"
harness = false
[[bench]]
name = "opentelemetry_traces"
harness = false
[[bench]]
name = "splunk_hec"
harness = false
[[bench]]
name = "syslog"
harness = false
[[bench]]
name = "templated_json"
harness = false
[[bench]]
name = "trace_agent"
harness = false
[lints]
workspace = true