Add Proxmox Backup Server datastore management: overview, datastore detail, download/prune/verify/GC dialogs, usePbs hook, backend commands, and tests. Fix macOS keychain re-writes failing with 'item already exists': replace keyring 3 with keyring-core plus per-platform stores (macOS Keychain, Windows Credential Manager, Linux keyutils), recover by deleting the stale item and retrying once, and surface actionable messages for locked keychains.
51 lines
1.3 KiB
TOML
51 lines
1.3 KiB
TOML
[package]
|
|
name = "clustri"
|
|
version = "0.1.0"
|
|
description = "A cross-platform desktop application for managing Proxmox VE servers"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["tray-icon"] }
|
|
tauri-plugin-dialog = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
|
|
tokio = { version = "1", features = ["full"] }
|
|
thiserror = "2"
|
|
keyring-core = "1"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
rustls = "0.23"
|
|
rustls-pemfile = "2"
|
|
tokio-rustls = "0.26"
|
|
x509-cert = "0.2"
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|
|
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-webpki-roots"] }
|
|
http = "1"
|
|
futures-util = "0.3"
|
|
url = "2"
|
|
percent-encoding = "2"
|
|
|
|
[dev-dependencies]
|
|
httpmock = "0.8"
|
|
rcgen = "0.13"
|
|
tempfile = "3"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
apple-native-keyring-store = { version = "1", features = ["keychain"] }
|
|
security-framework = "3"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows-native-keyring-store = "1"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
linux-keyutils-keyring-store = "1"
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|