Rename things to ush for brevity. Add Tree system.

This commit is contained in:
Michael Mikovsky
2026-02-09 10:27:15 -07:00
parent ebeaa29d5b
commit 2a18639d84
86 changed files with 368 additions and 419 deletions
+8 -6
View File
@@ -14,13 +14,15 @@ include = ["LICENSE-APACHE", "LICENSE-MIT", "**/*.rs", "Cargo.toml"]
[workspace]
members = [
# Binaries
"unshell-gui",
"ush-gui",
# UnShell Binaries
"unshell-server", "unshell-payload",
"ush-server",
"ush-payload",
# Libraries
"unshell-manager", "unshell-obfuscate"
"ush-manager",
"ush-obfuscate"
, "core-modules/server2"]
[features]
@@ -29,7 +31,7 @@ default = []
log = []
log_debug = ["log"]
obfuscate = ["unshell-obfuscate/obfuscate"]
obfuscate = ["ush-obfuscate/obfuscate"]
[dependencies]
chrono = { workspace = true }
@@ -38,7 +40,8 @@ serde_json = { workspace = true }
crossbeam-channel = "0.5.15"
unshell-obfuscate = { path = "./unshell-obfuscate" }
ush-obfuscate = { path = "./ush-obfuscate" }
static_init.workspace = true
# unshell-crypt = {path = "./unshell-crypt"}
[workspace.dependencies]
@@ -53,7 +56,6 @@ static_init = "1.0.4"
toml = "0.9.9"
[profile.release]
opt-level = 2