forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (61 loc) · 1.52 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (61 loc) · 1.52 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
[workspace]
resolver = "2"
members = [
"comp/core/log/rust",
"pkg/discovery/module/rust",
"pkg/procmgr/rust",
]
[workspace.package]
edition = "2024"
license = "Apache-2.0"
rust-version = "1.91"
[workspace.dependencies]
anyhow = "1.0.98"
cap-std = "3.4"
clap = { version = "4.5", features = ["derive"] }
elf = "0.8.0"
glob-match = "0.2"
http-body-util = "0.1"
hyper = "1"
hyper-util = { version = "0.1", default-features = false, features = ["http1", "server", "tokio"] }
log = "0.4"
prost = "0.13"
prost-types = "0.13"
protoc-gen-prost = "0.4"
protoc-gen-tonic = "0.4"
lru = { version = "0.16.0", default-features = false }
memchr = "2.7.6"
nom = "7.1"
normalize-path = "0.2"
phf = { version = "0.11", features = ["macros"] }
quick-xml = { version = "0.37", features = ["serialize"] }
rmp-serde = "1.3"
serde = { version = "1.0.219", features = ["derive", "std"] }
serde_json = "1.0"
serde_yaml = "0.9"
dd-agent-log = { path = "comp/core/log/rust" }
time = { version = "0.3", features = ["formatting", "macros"] }
thiserror = "2.0.12"
tokio = "1"
tokio-stream = "0.1"
tonic = "0.12"
tonic-build = "0.12"
tonic-reflection = "0.12"
uzers = "0.12"
walkdir = "2"
yaml-rust2 = "0.9"
zip = { version = "2.1", default-features = false, features = ["deflate"] }
tower = "0.4"
uuid = { version = "1", features = ["v4"] }
# dev-dependencies
dircpy = "0.3.19"
regex = "1"
memmap2 = "0.9"
nix = { version = "0.30", features = ["signal"] }
scopeguard = "1.2"
temp-env = "0.3"
tempfile = "3.0"
[profile.release]
lto = "fat"
opt-level = "z"
strip = "symbols"