Files
unshell/core-modules/client/Cargo.toml
T
2025-12-20 22:39:56 -07:00

27 lines
738 B
TOML

cargo-features = ["trim-paths", "panic-immediate-abort"]
[package]
name = "client"
edition = "2024"
[lib]
crate-type = ["cdylib"]
[features]
log_debug = ["unshell-lib/log_debug", "unshell-manager/obfuscate"]
obfuscate = ["unshell-lib/obfuscate", "unshell-obfuscate/obfuscate", "unshell-manager/obfuscate"]
[dependencies]
unshell-lib = {path = "../../unshell-lib", default-featues = false}
unshell-obfuscate = {path = "../../unshell-obfuscate", default-featues = false}
unshell-manager = {path = "../../unshell-manager", default-featues = false}
[profile.release]
strip = true # Strip symbols from the binary
opt-level = "s" # Optimize for size
lto = true
codegen-units = 1
panic = "immediate-abort"
debug = false
trim-paths = "all"