mirror of
https://github.com/pandorafuture/wx-cli.git
synced 2026-08-29 04:00:55 +00:00
- rusqlite 0.32 → 0.40,涵盖全部 5 个 crate - aes 0.8 → 0.9、cbc 0.1 → 0.2,涵盖加解密相关 4 个 crate - toml 0.8 → 1.1 配置解析库升级 - 迁移 cipher 0.5 新接口,替换已废弃的加解密方法 - 修复 aes::cipher::Array 弃用警告,改用 TryFrom 转换
29 lines
623 B
TOML
29 lines
623 B
TOML
[package]
|
|
name = "wx-keychain"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
wx-decrypt = { path = "../wx-decrypt" }
|
|
wx-paths = { path = "../wx-paths" }
|
|
tokio = { version = "1", features = ["process", "time", "io-util", "rt-multi-thread", "macros"] }
|
|
regex = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
toml = "1.1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
thiserror = "2"
|
|
hex = "0.4"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
mach2 = "0.6"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[dev-dependencies]
|
|
aes = "0.9"
|
|
cbc = "0.2"
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
tempfile = "3"
|