EasyTier/easytier-gui/src-tauri/Cargo.toml

55 lines
1.4 KiB
TOML
Raw Normal View History

2024-04-14 23:29:34 +08:00
[package]
name = "easytier-gui"
version = "1.2.3"
description = "EasyTier GUI"
2024-04-14 23:29:34 +08:00
authors = ["you"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "app_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
2024-04-14 23:29:34 +08:00
[build-dependencies]
2024-08-07 21:27:38 +08:00
tauri-build = { version = "2.0.0-rc", features = [] }
2024-04-14 23:29:34 +08:00
[dependencies]
2024-08-07 21:27:38 +08:00
tauri = { version = "2.0.0-rc", features = [
"tray-icon",
"image-png",
"image-ico",
] }
2024-04-14 23:29:34 +08:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
easytier = { path = "../../easytier" }
tokio = { version = "1", features = ["full"] }
anyhow = "1.0"
chrono = { version = "0.4.37", features = ["serde"] }
once_cell = "1.18.0"
2024-08-07 21:27:38 +08:00
dashmap = "6.0"
2024-04-14 23:29:34 +08:00
privilege = "0.3"
2024-08-07 21:27:38 +08:00
gethostname = "0.5"
dunce = "1.0.4"
2024-08-07 21:27:38 +08:00
tauri-plugin-shell = "2.0.0-rc"
tauri-plugin-process = "2.0.0-rc"
tauri-plugin-clipboard-manager = "2.0.0-rc"
tauri-plugin-positioner = { version = "2.0.0-rc", features = ["tray-icon"] }
tauri-plugin-vpnservice = { path = "../../tauri-plugin-vpnservice" }
2024-08-07 21:27:38 +08:00
tauri-plugin-os = "2.0.0-rc"
tauri-plugin-autostart = "2.0.0-rc"
2024-04-14 23:29:34 +08:00
[features]
# This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-single-instance = "2.0.0-rc.0"