25 lines
914 B
TOML
25 lines
914 B
TOML
[workspace]
|
|
members = [
|
|
"crates/*",
|
|
"src-tauri",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
async-trait = "0.1"
|
|
thiserror = "2"
|
|
anyhow = "1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
rusqlite = { version = "0.31", features = ["bundled"] }
|
|
tracing = "0.1"
|
|
regex = "1"
|
|
# keyring v3 默认不带任何 platform 后端,必须显式启 feature——
|
|
# 否则 Entry 走 noop store:set_password 静默成功不持久化,get_password 永远空。
|
|
# Win+mac 启用原生后端;linux 用 async-persistent 变体避同步阻塞 Secret Service。
|
|
# 由 df-storage(密钥解析下沉层) + src-tauri(build_provider_for 转发壳)共同引用。
|
|
keyring = { version = "3", features = ["windows-native", "apple-native", "linux-native-async-persistent"] }
|