-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathCargo.toml
More file actions
102 lines (94 loc) · 2.67 KB
/
Cargo.toml
File metadata and controls
102 lines (94 loc) · 2.67 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
[package]
name = "eldritch"
version = "0.3.1"
edition = "2021"
[features]
# Check if compiled by imix
imix = []
print_stdout = []
[dependencies]
pb = { workspace = true }
transport = { workspace = true }
generic-array = "=0.14.7"
aes = { workspace = true }
allocative = { workspace = true }
anyhow = { workspace = true }
async-recursion = { workspace = true }
async-trait = { workspace = true }
base64 = { workspace = true }
chrono = { workspace = true }
derive_more = { workspace = true }
eval = { workspace = true }
flate2 = { workspace = true }
glob = { workspace = true }
hex = { workspace = true }
hex-literal = { workspace = true }
ipnetwork = { workspace = true }
log = { workspace = true }
md5 = { workspace = true }
notify = { workspace = true }
portable-pty = { workspace = true }
pretty_env_logger = { workspace = true }
prost-types = { workspace = true }
rand = { workspace = true }
rand_chacha = { workspace = true }
regex = { workspace = true }
reqwest = { workspace = true, default-features = false, features = [
"blocking",
"json",
"rustls-tls",
"stream",
"http2",
] }
russh = { workspace = true }
russh-sftp = { workspace = true }
russh-keys = { workspace = true }
rust-embed = { workspace = true, features = ["compression"] }
serde_json = { workspace = true }
sha1 = { workspace = true }
sha2 = { workspace = true }
sha256 = { workspace = true }
starlark = { workspace = true }
starlark_derive = { workspace = true }
sysinfo = { workspace = true }
tar = { workspace = true }
tempfile = { workspace = true }
tera = { workspace = true }
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
tokio-stream = { workspace = true }
tokio-util = { workspace = true }
whoami = { workspace = true }
local-ip-address = { workspace = true }
nix = { workspace = true }
# WINDOWS
[target.'cfg(windows)'.dependencies]
winreg = { workspace = true }
object = { workspace = true }
windows-sys = { workspace = true, features = [
"Win32_Foundation",
"Win32_System_LibraryLoader",
"Win32_System_Threading",
"Win32_System_Memory",
"Win32_System_Diagnostics_Debug",
"Win32_Security",
"Win32_System_SystemInformation",
"Win32_System_SystemServices",
"Win32_UI_Shell",
] }
# NOT WINDOWS
[target.'cfg(not(windows))'.dependencies]
pnet = { workspace = true }
# NOT FREEBSD
[target.'cfg(not(target_os = "freebsd"))'.dependencies]
listeners = { workspace = true }
# DEV
[dev-dependencies]
transport = { workspace = true, features = ["mock"] }
httptest = { workspace = true }
uuid = { workspace = true, features = ["v4"] }
lazy_static = "1.5.0"
# BUILD
[build-dependencies]
tonic-build = { workspace = true }
anyhow = { workspace = true }
which = { workspace = true }