Move server component out of unshell-lib

This commit is contained in:
Michael Mikovsky
2025-12-20 12:25:35 -07:00
parent 0dcd841cc5
commit 514dd5c87b
11 changed files with 934 additions and 73 deletions
+19
View File
@@ -1,6 +1,25 @@
cargo-features = ["trim-paths"]
[package]
name = "server"
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["cdylib"]
[features]
log_debug=["unshell-lib/log_debug"]
[dependencies]
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 = "abort"
debug = false
trim-paths = "all"