33 lines
814 B
TOML
33 lines
814 B
TOML
[package]
|
|
name = "openchamber-desktop"
|
|
version = "1.7.1"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "openchamber-desktop"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
default = []
|
|
devtools = ["tauri/devtools"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.86"
|
|
base64 = "0.22.1"
|
|
log = "0.4.28"
|
|
reqwest = { version = "0.12.4", default-features = false, features = ["rustls-tls", "blocking"] }
|
|
serde = { version = "1.0.210", features = ["derive"] }
|
|
serde_json = "1.0.143"
|
|
tauri = { version = "2.9.4", features = ["macos-private-api"] }
|
|
tauri-plugin-dialog = "2.4.2"
|
|
tauri-plugin-log = "2.7.1"
|
|
tauri-plugin-shell = "2.3.3"
|
|
tauri-plugin-notification = "2.3.3"
|
|
tauri-plugin-updater = "2"
|
|
tokio = { version = "1.38", features = ["rt-multi-thread", "time"] }
|
|
url = "2.5"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.5.3", features = [] }
|