-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
93 lines (88 loc) · 1.87 KB
/
Cargo.toml
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
[package]
name = "tat_agent"
version = "1.1.0"
edition = "2018"
[dependencies]
tokio = { version = "1.40.0", features = [
"test-util",
"rt-multi-thread",
"process",
"macros",
] }
reqwest = { version = "0.12", features = ["json", "stream"] }
tokio-stream = "0.1.16"
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"
ringbuffer = "0.15.0"
smbios-lib = "0.9.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"
[target.'cfg(unix)'.dependencies]
daemonize = "0.5.0"
users = { version = "0.11.0" }
openssl = { version = '0.10.66', features = ["vendored"] }
procfs = "0.15.1"
unix_mode = "0.1.3"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = [
"std",
"sysinfoapi",
"winsvc",
"winbase",
"winnt",
"stringapiset",
"winnls",
"wow64apiset",
"synchapi",
"namedpipeapi",
"lmaccess",
"lmapibuf",
"sddl",
"ntlsa",
"ntsecapi",
"lsalookup",
"libloaderapi",
"errhandlingapi",
"securitybaseapi",
"userenv",
"tlhelp32",
"psapi",
"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"] }
[dev-dependencies]
faux = "0.1.9"