mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-08 22:38:01 -06:00
29 lines
622 B
TOML
29 lines
622 B
TOML
cargo-features = ["trim-paths"]
|
|
|
|
[package]
|
|
name = "unshell-payload"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
obfuscate = ["unshell-obfuscate/obfuscate"]
|
|
log_debug = ["unshell-lib/log_debug"]
|
|
# default = ["obfuscate"]
|
|
|
|
[dependencies]
|
|
env_logger = "0.11.8"
|
|
libloading = "0.8.9"
|
|
proc-macro2 = "1.0.103"
|
|
|
|
unshell-lib = {path = "../unshell-lib"}
|
|
unshell-obfuscate = {path = "../unshell-obfuscate"}
|
|
|
|
[profile.release]
|
|
strip = true # Strip symbols from the binary
|
|
opt-level = "z" # Optimize for size
|
|
lto = true # Link tree optimization
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
debug = false # Remove debug
|
|
trim-paths="all"
|
|
# panic=immediate-abort
|