Files

64 lines
1.8 KiB
TOML
Raw Permalink Normal View History

2024-04-14 23:29:34 +08:00
[package]
name = "easytier-gui"
2025-07-25 00:16:15 +08:00
version = "2.4.0"
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
2025-04-25 22:27:36 +08:00
# enable thunk-rs when compiling for x86_64 or i686 windows
[target.x86_64-pc-windows-msvc.build-dependencies]
thunk-rs = { git = "https://github.com/easytier/thunk.git", default-features = false, features = ["win7"] }
[target.i686-pc-windows-msvc.build-dependencies]
thunk-rs = { git = "https://github.com/easytier/thunk.git", default-features = false, features = ["win7"] }
2024-04-14 23:29:34 +08:00
[dependencies]
2024-12-23 19:38:32 -05:00
# wry 0.47 may crash on android, see https://github.com/EasyTier/EasyTier/issues/527
2025-07-25 00:16:15 +08:00
tauri = { version = "2.7.0", features = [
2024-08-07 21:27:38 +08:00
"tray-icon",
"image-png",
"image-ico",
"devtools",
2024-08-07 21:27:38 +08:00
] }
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"
2025-07-07 22:59:11 +08:00
elevated-command = "1.1.2"
2025-07-25 00:16:15 +08:00
gethostname = "1.0.2"
2024-06-04 23:06:10 +08:00
dunce = "1.0.4"
2025-07-25 00:16:15 +08:00
tauri-plugin-shell = "2.3.0"
tauri-plugin-process = "2.3.0"
tauri-plugin-clipboard-manager = "2.3.0"
tauri-plugin-positioner = { version = "2.3.0", features = ["tray-icon"] }
2024-07-15 00:03:55 +08:00
tauri-plugin-vpnservice = { path = "../../tauri-plugin-vpnservice" }
2025-07-25 00:16:15 +08:00
tauri-plugin-os = "2.3.0"
tauri-plugin-autostart = "2.5.0"
2025-06-11 23:17:09 +08:00
uuid = "1.17.0"
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"]
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
2025-07-25 00:16:15 +08:00
tauri-plugin-single-instance = "2.3.2"