Files
unshell/unshell-breakout-module/Cargo.toml
T

33 lines
602 B
TOML
Raw Normal View History

cargo-features = ["trim-paths"]
2025-11-05 15:17:31 -07:00
[package]
name = "unshell-breakout-module"
2025-11-05 15:17:31 -07:00
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["cdylib"]
[features]
2025-11-14 09:43:41 -07:00
default = ["client", "server", "log_debug"]
2025-11-13 11:52:01 -07:00
client = ["unshell-lib/client"]
server = ["unshell-lib/server"]
2025-11-14 09:43:41 -07:00
log_debug = ["unshell-lib/log_debug"]
2025-11-13 11:52:01 -07:00
obfuscate = ["unshell-lib/obfuscate"]
2025-11-08 17:58:40 -07:00
[dependencies]
2025-11-14 09:43:41 -07:00
unshell-lib = {path = "../unshell-lib", default-featues = false}
2025-11-08 17:58:40 -07:00
2025-11-05 15:17:31 -07:00
[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"