9db52595c7
Implement version checking and update notifications in the GUI
28 lines
733 B
TOML
28 lines
733 B
TOML
[workspace]
|
|
|
|
[package]
|
|
name = "spacesh-app"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "spacesh_app_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-notification = "2"
|
|
tauri-plugin-window-state = "2"
|
|
spacesh-proto = { path = "../../crates/spacesh-proto" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
base64 = "0.22"
|
|
anyhow = "1"
|
|
dirs = "5"
|
|
# rustls (no openssl) so the universal-apple-darwin cross-build stays self-contained.
|
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
|