Files
Easytier_lkddi/easytier-gui/src-tauri/Cargo.toml
T

52 lines
1.2 KiB
TOML
Raw Normal View History

2024-04-14 23:29:34 +08:00
[package]
name = "easytier-gui"
2024-08-13 00:16:50 +08:00
version = "1.2.2"
2024-06-04 23:06:10 +08:00
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
2024-07-15 00:03:55 +08:00
[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-07-08 23:18:10 +08:00
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"
2024-06-04 23:06:10 +08:00
auto-launch = "0.5.0"
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"] }
2024-07-15 00:03:55 +08:00
tauri-plugin-vpnservice = { path = "../../tauri-plugin-vpnservice" }
2024-08-07 21:27:38 +08:00
tauri-plugin-os = "2.0.0-rc"
2024-07-08 23:18:10 +08:00
2024-07-30 00:01:20 +08:00
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"]