Files
unshell/unshell-lib/Cargo.toml
T
2025-11-25 14:27:06 -07:00

29 lines
510 B
TOML

[package]
name = "unshell-lib"
edition = "2024"
[features]
default = ["client", "server", "log_debug"]
# Components
client = []
server = []
log = []
log_debug = ["log"]
obfuscate = ["unshell-obfuscate/obfuscate"]
[dependencies]
# Base dependencies
libloading = {version = "0.8.9"}
bincode = "2.0.1"
unshell-obfuscate = {path = "../unshell-obfuscate"}
chrono = "0.4.42"
serde = {version = "1.0.228", features=["derive"]}
serde_json = "1.0.145"
libc = "0.2.177"
rand = "0.9.2"
crossbeam-channel = "0.5.15"