Move everything into workspace

This commit is contained in:
Michael Mikovsky
2026-01-26 09:13:46 -07:00
parent b619fb7a71
commit 5d6d746985
41 changed files with 5374 additions and 1105 deletions
+8 -7
View File
@@ -3,16 +3,17 @@ name = "unshell-manager"
edition = "2024"
[features]
obfuscate = ["unshell-obfuscate/obfuscate"]
log = ["unshell-lib/log"]
log_debug = ["unshell-lib/log_debug"]
log = ["unshell/log"]
log_debug = ["log", "unshell/log_debug"]
client = ["unshell-lib/client"]
server = ["unshell-lib/server"]
obfuscate = ["unshell-obfuscate/obfuscate"]
# client = ["unshell-lib/client"]
# server = ["unshell-lib/server"]
[dependencies]
unshell-lib = {path = "../unshell-lib", default-features = false}
unshell-obfuscate = {path = "../unshell-obfuscate", default-features = false}
unshell = {path = "../", default-features = false}
unshell-obfuscate = {path = "../unshell-obfuscate"}
bincode = "2.0.1"
libc = "0.2.178"