-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (61 loc) · 1.82 KB
/
Copy pathCargo.toml
File metadata and controls
71 lines (61 loc) · 1.82 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
[package]
name = "dd-procmgrd"
version = "0.1.0"
edition.workspace = true
license.workspace = true
rust-version.workspace = true
[features]
test-helpers = []
[lib]
name = "dd_procmgrd"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "dd-procmgrd"
path = "src/bins/dd-procmgrd.rs"
[[bin]]
name = "dd-procmgr"
path = "src/bins/dd-procmgr.rs"
[dependencies]
anyhow.workspace = true
clap = { workspace = true, features = ["derive"] }
log.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
serde_yaml.workspace = true
dd-agent-log.workspace = true
dd-procmgr-client.workspace = true
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal", "process", "fs", "time", "sync"] }
tokio-stream = { workspace = true, features = ["net"] }
tonic = { workspace = true, features = ["transport"] }
tonic-reflection.workspace = true
uuid.workspace = true
[target.'cfg(unix)'.dependencies]
nix = { workspace = true, features = ["signal", "process", "user"] }
[target.'cfg(windows)'.dependencies]
windows-registry.workspace = true
windows-sys = { workspace = true, features = [
"Win32_Foundation",
"Win32_System_JobObjects",
"Win32_System_Services",
"Win32_System_Threading",
"Win32_System_Console",
"Win32_System_Environment",
"Win32_UI_Shell",
"Win32_Security",
"Win32_Security_Authentication_Identity",
"Win32_Security_Authorization",
"Win32_System_Pipes",
"Win32_System_Registry",
"Win32_System_SystemInformation",
"Win32_System_WindowsProgramming",
"Win32_Storage_FileSystem",
"Win32_NetworkManagement_NetManagement",
] }
[target.'cfg(unix)'.dev-dependencies]
nix = { workspace = true, features = ["signal", "process", "user"] }
[dev-dependencies]
tempfile.workspace = true
[[test]]
name = "e2e"
required-features = ["test-helpers"]