-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathCargo.toml
More file actions
89 lines (85 loc) · 1.9 KB
/
Copy pathCargo.toml
File metadata and controls
89 lines (85 loc) · 1.9 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
[package]
name = "tat_agent"
version = "1.1.9"
edition = "2018"
[dependencies]
tokio = { version = "1.44.2", features = [
"test-util",
"rt-multi-thread",
"process",
"macros",
] }
reqwest = { version = "0.12", features = ["json", "stream"] }
tokio-stream = { version = "0.1.16", features = ["fs"] }
tokio-tungstenite = { version = "0.24.0", features = ["native-tls"] }
bytes = "1.7.1"
futures = { version = "0.3.31", default-features = false, features = [
"std",
"async-await",
] }
serde_json = "1.0.57"
serde_bytes = "0.11.7"
serde = { version = "1.0.115", features = ["derive"] }
url = "2.1.1"
clap = { version = "4.0.29", features = ["derive"] }
log = "0.4.11"
log4rs = { version = "1.3.0", default-features = false, features = [
"all_components",
] }
libc = "0.2.77"
rand = "0.8.5"
base64 = "0.22.1"
chrono = "0.4.18"
md5 = "0.7.0"
zip = "2.2.0"
cfg-if = "1.0"
urlencoding = "2.1.2"
bson = "2.13.0"
glob = "0.3.0"
rsa = "0.9.6"
hmac = "0.12.1"
sha1 = { version = "0.10.5", default-features = false, features = ["oid"] }
anyhow = "1.0.89"
leaky-bucket = "1.1.2"
sysinfo = { version = "0.33.1", default-features = false, features = [
"system",
] }
machine-uid = "0.5.3"
smbios-lib = "0.9.2"
[target.'cfg(unix)'.dependencies]
daemonize = "0.5.0"
uzers = { version = "0.12.1" }
openssl = { version = '0.10.72', features = ["vendored"] }
procfs = "0.15.1"
unix_mode = "0.1.3"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = [
"std",
"winsvc",
"winbase",
"winnt",
"stringapiset",
"synchapi",
"namedpipeapi",
"lmaccess",
"lmapibuf",
"sddl",
"ntlsa",
"ntsecapi",
"lsalookup",
"libloaderapi",
"errhandlingapi",
"securitybaseapi",
"userenv",
"tlhelp32",
"memoryapi",
"subauth",
"winsock2",
"winreg",
] }
codepage-strings = "1.0.2"
ntapi = "0.4.1"
nom = "7.1.1"
zip-extract = "0.2.1"
[build-dependencies]
reqwest = { version = "0.12", features = ["blocking"] }