1234567891011121314151617181920212223242526272829303132333435363738 |
- [package]
- name = "app"
- version = "0.1.0"
- description = "clash verge"
- authors = ["zzzgydi"]
- license = "GPL-3.0"
- repository = "https://github.com/zzzgydi/clash-verge.git"
- default-run = "app"
- edition = "2021"
- build = "build.rs"
- [build-dependencies]
- tauri-build = { version = "1.0.0-beta.4" }
- [dependencies]
- dirs = "4.0.0"
- chrono = "0.4.19"
- 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"] }
- # tauri = { git = "https://github.com/tauri-apps/tauri", rev = "5e0d59ec", features = ["api-all", "system-tray"] }
- tauri = { git = "https://github.com/tauri-apps/tauri", branch = "next", features = ["api-all", "system-tray"] }
- tauri-plugin-shadows = { git = "https://github.com/tauri-apps/tauri-plugin-shadows", features = ["tauri-impl"] }
- reqwest = { version = "0.11", features = ["json"] }
- tokio = { version = "1", features = ["full"] }
- log = "0.4.14"
- log4rs = "1.0.0"
- warp = "0.3"
- port_scanner = "0.1.5"
- [target.'cfg(windows)'.dependencies]
- winreg = { version = "0.10", features = ["transactions"] }
- [features]
- default = [ "custom-protocol" ]
- custom-protocol = [ "tauri/custom-protocol" ]
|