forked from Whitecat18/Rust-for-Malware-Development
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 706 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 706 Bytes
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
[package]
name = "RecycledGate"
version = "0.1.0"
edition = "2024"
[dependencies]
ntapi = "0.4.1"
widestring = "1.2.0"
[dependencies.windows-sys]
version = "0.60.2"
features = [
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Kernel",
"Win32_System_Memory",
"Win32_System_Threading",
"Win32_System_Diagnostics_Debug",
"Win32_System_LibraryLoader",
"Wdk_System_SystemServices",
"Win32_System_SystemServices",
"Win32_System_Diagnostics_Debug",
"Win32_System_SystemInformation",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_WindowsProgramming",
"Wdk_Foundation",
]
[build-dependencies]
cc = "1.2.19"
nasm-rs = "0.3.0"