Files
trickster0-OffensiveRust/memN0ps/arsenal-rs/dll_injector_classic-rs/testdll/Cargo.toml
T

36 lines
1.1 KiB
TOML
Executable File

[package]
name = "testdll"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[profile.release]
opt-level = "z" # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = "abort" # Abort on panic
strip = true # Automatically strip symbols from the binary.
[dependencies.windows-sys]
version = "0.42.0"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Threading",
"Win32_UI_WindowsAndMessaging",
"Win32_System_Memory",
"Win32_System_Diagnostics_Debug",
"Win32_System_SystemServices",
"Win32_System_WindowsProgramming",
"Win32_System_LibraryLoader",
"Win32_NetworkManagement_IpHelper",
"Win32_Networking_WinSock",
"Win32_System_SystemInformation",
"Win32_System_Environment",
"Win32_System_ProcessStatus",
"Win32_Globalization",
"Win32_System_Diagnostics_ToolHelp",
]