2025-11-08 17:58:40 -07:00
|
|
|
[package]
|
2026-02-09 10:27:15 -07:00
|
|
|
name = "ush-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]
|
2026-02-20 18:17:11 -07:00
|
|
|
default = []
|
2026-02-20 15:47:58 -07:00
|
|
|
obfuscate_aes = []
|
|
|
|
|
obfuscate_ref = []
|
2025-11-08 17:58:40 -07:00
|
|
|
|
2026-01-26 09:13:46 -07:00
|
|
|
[lib]
|
|
|
|
|
proc-macro = true
|
|
|
|
|
|
2025-11-08 17:58:40 -07:00
|
|
|
[dependencies]
|
2026-02-20 15:47:58 -07:00
|
|
|
base62 = {path = "../base62"}
|
|
|
|
|
|
|
|
|
|
# aes = "0.8.4"
|
2026-04-24 14:10:03 -06:00
|
|
|
block-padding = "0.4.2"
|
|
|
|
|
getrandom = "0.4.2"
|
2026-02-08 12:56:52 -07:00
|
|
|
hex = "0.4.3"
|
|
|
|
|
hex-literal = "1.1.0"
|
2026-02-20 15:47:58 -07:00
|
|
|
# regex = "1.12.2"
|
|
|
|
|
# sha2 = "0.10.9"
|
2025-12-13 16:49:32 -07:00
|
|
|
|
2026-01-26 09:13:46 -07:00
|
|
|
# Common
|
|
|
|
|
static_init = { workspace = true }
|
|
|
|
|
|
|
|
|
|
# Specific
|
2026-04-24 14:10:03 -06:00
|
|
|
quote = "1.0.45"
|
|
|
|
|
syn = {version = "2.0.117", features = ["full"]}
|
|
|
|
|
proc-macro2 = "1.0.106"
|
|
|
|
|
rand = "0.10.1"
|