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
12 lines (10 loc) · 663 Bytes
/
Cargo.toml
File metadata and controls
12 lines (10 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
[package]
name = "indirect_syscalls"
version = "0.1.0"
edition = "2021"
[dependencies]
winapi = { version = "0.3.9", features = ["wtsapi32","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"
# Add the following for systemcall stub !
# rust_syscalls = {path = "..\rust_syscalls\\src", features = ["_INDIRECT_"]}
rust_syscalls = {path = "./rust_syscalls/", features = ["_INDIRECT_"]}