Files
unshell/unshell-payload/Cargo.toml
T

32 lines
703 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
edition = "2024"
2025-11-08 17:58:40 -07:00
[features]
obfuscate = ["unshell-obfuscate/obfuscate"]
2025-11-24 08:45:44 -07:00
log = ["unshell-lib/log"]
2025-11-11 11:00:28 -07:00
log_debug = ["unshell-lib/log_debug"]
2025-11-14 09:43:41 -07:00
client = ["unshell-lib/client"]
server = ["unshell-lib/server"]
2025-11-24 08:45:44 -07:00
# server = ["unshell-lib/server"]
2025-11-14 09:43:41 -07:00
2025-11-08 17:58:40 -07:00
2025-11-05 15:17:31 -07:00
[dependencies]
# lazy_static = "1.5.0"
static_init = "1.0.4"
2025-11-10 22:18:21 -07:00
2025-11-14 09:43:41 -07:00
unshell-lib = {path = "../unshell-lib", default-features = false}
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"