2021-12-04 14:31:26 +08:00
|
|
|
[package]
|
|
|
|
name = "app"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "clash verge"
|
|
|
|
authors = ["zzzgydi"]
|
2021-12-22 01:12:32 +08:00
|
|
|
license = "GPL-3.0"
|
2022-01-08 22:23:48 +08:00
|
|
|
repository = "https://github.com/zzzgydi/clash-verge.git"
|
2021-12-04 14:31:26 +08:00
|
|
|
default-run = "app"
|
|
|
|
edition = "2021"
|
2021-12-14 18:39:37 +08:00
|
|
|
build = "build.rs"
|
2021-12-04 14:31:26 +08:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
tauri-build = { version = "1.0.0-beta.4" }
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
dirs = "4.0.0"
|
2021-12-19 17:50:25 +08:00
|
|
|
chrono = "0.4.19"
|
2021-12-04 14:31:26 +08:00
|
|
|
serde_json = "1.0"
|
|
|
|
serde_yaml = "0.8"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-12-29 18:47:29 +08:00
|
|
|
# tauri = { version = "1.0.0-beta.8", features = ["api-all", "system-tray"] }
|
2022-01-08 22:23:48 +08:00
|
|
|
# tauri = { git = "https://github.com/tauri-apps/tauri", rev = "5e0d59ec", features = ["api-all", "system-tray"] }
|
2022-01-10 02:15:38 +08:00
|
|
|
tauri = { git = "https://github.com/tauri-apps/tauri", branch = "next", features = ["api-all", "system-tray", "updater"] }
|
2022-01-08 22:23:48 +08:00
|
|
|
tauri-plugin-shadows = { git = "https://github.com/tauri-apps/tauri-plugin-shadows", features = ["tauri-impl"] }
|
2021-12-29 18:47:29 +08:00
|
|
|
|
2021-12-04 14:31:26 +08:00
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
2021-12-08 23:37:18 +08:00
|
|
|
log = "0.4.14"
|
|
|
|
log4rs = "1.0.0"
|
2021-12-23 01:35:17 +08:00
|
|
|
warp = "0.3"
|
|
|
|
port_scanner = "0.1.5"
|
2021-12-04 14:31:26 +08:00
|
|
|
|
2021-12-06 10:31:17 +08:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winreg = { version = "0.10", features = ["transactions"] }
|
|
|
|
|
2021-12-04 14:31:26 +08:00
|
|
|
[features]
|
|
|
|
default = [ "custom-protocol" ]
|
|
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|