-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (73 loc) · 1.95 KB
/
Cargo.toml
File metadata and controls
78 lines (73 loc) · 1.95 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
[workspace]
resolver = "2"
members = [
"cmd/ai_prompt_logger",
"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 = "4.0"
caps = "0.5"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive"] }
elf = "0.8.0"
glob-match = "0.2"
http-body-util = "0.1"
hostname = "0.4"
hyper = "1"
hyper-util = { version = "0.1", default-features = false, features = ["http1", "server", "tokio"] }
log = "0.4"
prost = "0.14"
prost-types = "0.14"
protoc-gen-prost = "0.5"
protoc-gen-tonic = "0.5"
lru = { version = "0.18.0", default-features = false }
memchr = "2.7.6"
nom = "8.0"
normalize-path = "0.2"
phf = { version = "0.13", features = ["macros"] }
rawzip = "0.4.4"
xml-rs = "0.8"
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.14"
tonic-build = "0.14"
tonic-prost = "0.14"
tonic-prost-build = "0.14"
tonic-reflection = "0.14"
# default-features off: avoid rustls/ring/webpki (ISC + CDLA) for cargo-deny; HTTP-only client.
ureq = { version = "2.10", default-features = false, features = ["json"] }
uzers = "0.12"
walkdir = "2"
saphyr-parser = "0.0.6"
yaml-rust2 = "0.11"
zip = { version = "8.0", default-features = false, features = ["deflate"] }
flate2 = "1.1"
tower = { version = "0.5", features = ["util"] }
uuid = { version = "1", features = ["v4"] }
windows-registry = "0.6"
windows-sys = { version = "0.61", features = [] }
# dev-dependencies
dircpy = "0.3.19"
regex = "1"
memmap2 = "0.9"
nix = { version = "0.31", features = ["signal"] }
scopeguard = "1.2"
temp-env = "0.3"
tempfile = "3.0"
[profile.release]
lto = "fat"
opt-level = "z"