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 转换
25 lines
511 B
TOML
25 lines
511 B
TOML
[package]
|
|
name = "wx-media"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
audio = ["dep:silk-rs"]
|
|
|
|
[dependencies]
|
|
aes = "0.9"
|
|
ecb = "0.1"
|
|
cipher = { version = "0.4", features = ["block-padding"] }
|
|
rusqlite = { version = "0.40", features = ["bundled"] }
|
|
md5 = "0.7"
|
|
base64 = "0.22"
|
|
thiserror = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
hex = "0.4"
|
|
silk-rs = { version = "0.2", optional = true }
|
|
wx-keychain = { path = "../wx-keychain" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|