clash-verge-rev/src-tauri/Cargo.toml
2021-12-08 23:37:18 +08:00

32 lines
762 B
TOML

[package]
name = "app"
version = "0.1.0"
description = "clash verge"
authors = ["zzzgydi"]
license = "MIT"
repository = ""
default-run = "app"
edition = "2021"
build = "src/build.rs"
[build-dependencies]
tauri-build = { version = "1.0.0-beta.4" }
[dependencies]
dirs = "4.0.0"
serde_json = "1.0"
serde_yaml = "0.8"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.0.0-beta.8", features = ["api-all", "system-tray"] }
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }
log = "0.4.14"
log4rs = "1.0.0"
[target.'cfg(windows)'.dependencies]
winreg = { version = "0.10", features = ["transactions"] }
[features]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]