Files
wx-cli/crates/wx-context/Cargo.toml
pandorafuture 125c762727 chore(deps): 升级核心依赖至最新版本
- 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 转换
2026-06-05 00:14:25 +08:00

28 lines
600 B
TOML

[package]
name = "wx-context"
version.workspace = true
edition.workspace = true
[dependencies]
wx-decrypt = { path = "../wx-decrypt" }
wx-keychain = { path = "../wx-keychain" }
wx-db = { path = "../wx-db" }
wx-paths = { path = "../wx-paths" }
serde = { version = "1", features = ["derive"] }
thiserror = "2"
hex = "0.4"
rusqlite = { version = "0.40", features = ["bundled-sqlcipher"] }
dashmap = "6"
rayon = "1"
rust-stemmers = "1"
[dev-dependencies]
tempfile = "3"
filetime = "0.2"
aes = "0.9"
cbc = "0.2"
hmac = "0.12"
sha2 = "0.10"
pbkdf2 = { version = "0.12", features = ["hmac"] }
hex = "0.4"