mirror of
https://github.com/0xflux/Simple-Rust-DLL
synced 2026-06-08 10:12:37 +00:00
db58de05e4
Unloads self from the process it is injected into, allowing multiple of the DLL to be injected into the process multiple times after finishing.
17 lines
408 B
TOML
17 lines
408 B
TOML
[package]
|
|
name = "rust_dll"
|
|
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"]
|
|
|
|
[dependencies]
|
|
windows = { version = "0.54.0", features = [
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_System_SystemServices",
|
|
"Win32_System_Threading", "Win32_Security"
|
|
] } |