mirror of
https://github.com/trickster0/OffensiveRust
synced 2026-06-08 17:54:47 +00:00
41 lines
1.1 KiB
TOML
Executable File
41 lines
1.1 KiB
TOML
Executable File
[package]
|
|
name = "inject"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[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]
|
|
env_logger = "0.9.0"
|
|
log = "0.4.17"
|
|
#sysinfo = "0.20.4"
|
|
obfstr = "0.3.0"
|
|
#ntapi = "0.4.0"
|
|
|
|
[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",
|
|
]
|