Files
unshell/unshell-lib/Cargo.toml
T

25 lines
381 B
TOML
Raw Normal View History

[package]
name = "unshell-lib"
edition = "2024"
2025-11-11 11:00:28 -07:00
[features]
log_debug = []
[dependencies]
2025-11-10 22:18:21 -07:00
# Base dependencies
libloading = {version = "0.8.9"}
bincode = "2.0.1"
2025-11-08 17:58:40 -07:00
unshell-obfuscate = {path = "../unshell-obfuscate"}
2025-11-09 12:34:52 -07:00
chrono = "0.4.42"
2025-11-10 22:18:21 -07:00
# Crypt dependencies
aes = "0.8.4"
block-padding = "0.4.1"
cbc = "0.1.2"
getrandom = "0.3.4"
hex = "0.4.3"
hex-literal = "1.1.0"
sha2 = "0.10.9"
#