Files
unshell/unshell-config/Cargo.toml
T

28 lines
514 B
TOML
Raw Normal View History

2025-12-13 16:49:32 -07:00
cargo-features = ["trim-paths"]
[package]
name = "unshell-config"
version = "0.1.0"
edition = "2024"
2025-12-13 16:49:32 -07:00
[features]
default = ["obfuscate"]
obfuscate = ["unshell-obfuscate/obfuscate"]
[dependencies]
2025-12-13 16:49:32 -07:00
libc = { version = "0.2.178", default-features = false }
unshell-obfuscate = {path = "../unshell-obfuscate", default-features=false}
[profile.release]
strip = true # Strip symbols from the binary
opt-level = "s" # Optimize for size
lto = true
codegen-units = 1
panic = "abort"
debug = false
trim-paths = "all"