easyremote/crates/client-tauri/Cargo.toml
2026-01-04 18:15:07 +08:00

51 lines
1.1 KiB
TOML

[package]
name = "easyremote-client"
version.workspace = true
edition.workspace = true
[build-dependencies]
tauri-build = { version = "1.5", features = [] }
[dependencies]
easyremote-common = { path = "../common" }
easyremote-client-core = { path = "../client-core" }
# Tauri
tauri = { version = "1.5", features = ["shell-open", "dialog-all", "clipboard-all", "window-all"] }
# Windows single instance
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58", features = [
"Win32_Foundation",
"Win32_System_Threading",
"Win32_Security",
"Win32_UI_WindowsAndMessaging"
] }
# Async
tokio = { workspace = true }
futures = { workspace = true }
# HTTP Client
reqwest = { version = "0.11", features = ["json"] }
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true }
# Logging
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
# Utils
chrono = { workspace = true }
anyhow = { workspace = true }
thiserror = { workspace = true }
dirs = "5.0"
image = { workspace = true }
[features]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]