Files
unshell/unshell-obfuscate/Cargo.toml
T

25 lines
411 B
TOML
Raw Normal View History

2025-11-08 17:58:40 -07:00
[package]
name = "unshell-obfuscate"
2026-01-30 14:05:07 -07:00
version.workspace = true
edition.workspace = true
authors.workspace = true
include.workspace = true
2025-11-08 17:58:40 -07:00
[features]
obfuscate = []
2026-01-26 09:13:46 -07:00
[lib]
proc-macro = true
2025-11-08 17:58:40 -07:00
[dependencies]
2025-12-13 16:49:32 -07:00
unshell-crypt = {path = "../unshell-crypt"}
2026-01-26 09:13:46 -07:00
# Common
static_init = { workspace = true }
# Specific
2025-11-08 17:58:40 -07:00
quote = "1.0.42"
syn = {version = "2.0.109", features = ["full"]}
2025-11-09 12:34:52 -07:00
proc-macro2 = "1.0.103"
2025-12-13 16:49:32 -07:00
rand = "0.9.2"