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
38 lines (37 loc) · 655 Bytes
/
Cargo.toml
File metadata and controls
38 lines (37 loc) · 655 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
33
34
35
36
37
38
[package]
name = "DLL_Injector"
version = "0.1.0"
edition = "2021"
authors = ["5mukx", "https://x.com/5mukx"]
[dependencies]
winapi = { version = "0.3.9", features = [
"winuser",
"setupapi",
"dbghelp",
"wlanapi",
"winnls",
"wincon",
"fileapi",
"sysinfoapi",
"fibersapi",
"debugapi",
"winerror",
"wininet",
"winhttp",
"synchapi",
"securitybaseapi",
"wincrypt",
"psapi",
"tlhelp32",
"heapapi",
"shellapi",
"memoryapi",
"processthreadsapi",
"errhandlingapi",
"winbase",
"handleapi",
"synchapi",
] }
ntapi = "0.4.1"
user32-sys = "0.2.0"
libc = "0.2.171"