Files
unshell/core-modules/server/Cargo.toml
T

26 lines
551 B
TOML
Raw Normal View History

cargo-features = ["trim-paths", "panic-immediate-abort"]
2025-12-20 12:25:35 -07:00
[package]
name = "server"
version = "0.1.0"
edition = "2024"
2025-12-20 12:25:35 -07:00
[lib]
crate-type = ["cdylib"]
[features]
log_debug=["unshell-lib/log_debug"]
[dependencies]
2025-12-20 12:25:35 -07:00
unshell-lib = {path = "../../unshell-lib", default-featues = false}
unshell-obfuscate = {path = "../../unshell-obfuscate", 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"
2025-12-20 12:25:35 -07:00
debug = false
trim-paths = "all"