123456789101112131415161718192021222324252627282930313233343536373839404142 |
- [package]
- name = "clash-verge"
- version = "0.1.0"
- description = "clash verge"
- authors = ["zzzgydi"]
- license = "GPL-3.0"
- repository = "https://github.com/zzzgydi/clash-verge.git"
- default-run = "clash-verge"
- edition = "2021"
- build = "build.rs"
- [build-dependencies]
- tauri-build = { version = "1.0.0-rc.4", features = [] }
- [dependencies]
- anyhow = "1.0"
- dirs = "4.0.0"
- dunce = "1.0.2"
- nanoid = "0.4.0"
- chrono = "0.4.19"
- serde_json = "1.0"
- serde_yaml = "0.8"
- serde = { version = "1.0", features = ["derive"] }
- tauri = { version = "1.0.0-rc.4", features = ["shell-all", "system-tray", "updater", "window-all"] }
- window-shadows = { git = "https://github.com/tauri-apps/window-shadows" }
- window-vibrancy = { git = "https://github.com/tauri-apps/window-vibrancy" }
- reqwest = { version = "0.11", features = ["json"] }
- tokio = { version = "1", features = ["full"] }
- log = "0.4.14"
- log4rs = "1.0.0"
- warp = "0.3"
- which = "4.2.2"
- auto-launch = "0.2"
- port_scanner = "0.1.5"
- [target.'cfg(windows)'.dependencies]
- winreg = { version = "0.10", features = ["transactions"] }
- [features]
- default = [ "custom-protocol" ]
- custom-protocol = [ "tauri/custom-protocol" ]
|