Files
unshell/unshell-payload/Cargo.toml
T

28 lines
623 B
TOML
Raw Normal View History

2025-11-09 12:34:52 -07:00
cargo-features = ["trim-paths"]
2025-11-05 22:59:01 -07:00
2025-11-05 15:17:31 -07:00
[package]
name = "unshell-payload"
2025-11-05 15:17:31 -07:00
version = "0.1.0"
edition = "2024"
2025-11-08 17:58:40 -07:00
[features]
obfuscate = ["unshell-obfuscate/obfuscate"]
2025-11-05 15:17:31 -07:00
[dependencies]
2025-11-06 15:49:47 -07:00
env_logger = "0.11.8"
2025-11-05 15:17:31 -07:00
libloading = "0.8.9"
2025-11-09 12:34:52 -07:00
proc-macro2 = "1.0.103"
2025-11-06 00:01:46 -07:00
# unshell-logger = {path = "../unshell-logger"}
unshell-lib = {path = "../unshell-lib"}
2025-11-08 17:58:40 -07:00
unshell-obfuscate = {path = "../unshell-obfuscate"}
2025-11-05 22:59:01 -07:00
[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
2025-11-09 12:34:52 -07:00
trim-paths="all"
2025-11-06 15:49:47 -07:00
# panic=immediate-abort