Make unshell-obfuscate into a re-export

This commit is contained in:
Michael Mikovsky
2026-01-26 09:47:40 -07:00
parent 5d6d746985
commit 2aa61e80eb
8 changed files with 25 additions and 45 deletions
+16
View File
@@ -1,3 +1,5 @@
cargo-features = ["trim-paths"]
[package]
name = "unshell"
version = "0.1.0"
@@ -26,6 +28,7 @@ serde = { workspace = true }
serde_json = { workspace = true }
unshell-obfuscate = {path = "./unshell-obfuscate"}
unshell-crypt = {path = "./unshell-crypt"}
[workspace.dependencies]
####
@@ -40,6 +43,19 @@ toml = "0.9.9"
[profile.release]
strip = true # Strip symbols from the binary
opt-level = "z" # Optimize for size
lto = true # Link tree optimization
codegen-units = 1
panic = "abort"
debug = false # Remove debug
trim-paths="all"
# Optimize all dependencies even in debug builds:
[profile.dev.package."*"]
opt-level = 2
# ----------------------------------------------------------------------------------------
# Lints: