Cargo.toml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [package]
  2. name = "app"
  3. version = "0.1.0"
  4. description = "clash verge"
  5. authors = ["zzzgydi"]
  6. license = "GPL-3.0"
  7. repository = "https://github.com/zzzgydi/clash-verge.git"
  8. default-run = "app"
  9. edition = "2021"
  10. build = "build.rs"
  11. [build-dependencies]
  12. tauri-build = { version = "1.0.0-beta.4" }
  13. [dependencies]
  14. dirs = "4.0.0"
  15. chrono = "0.4.19"
  16. serde_json = "1.0"
  17. serde_yaml = "0.8"
  18. serde = { version = "1.0", features = ["derive"] }
  19. # tauri = { version = "1.0.0-beta.8", features = ["api-all", "system-tray"] }
  20. # tauri = { git = "https://github.com/tauri-apps/tauri", rev = "5e0d59ec", features = ["api-all", "system-tray"] }
  21. tauri = { git = "https://github.com/tauri-apps/tauri", branch = "next", features = ["api-all", "system-tray", "updater"] }
  22. tauri-plugin-shadows = { git = "https://github.com/tauri-apps/tauri-plugin-shadows", features = ["tauri-impl"] }
  23. tauri-plugin-vibrancy = { git = "https://github.com/tauri-apps/tauri-plugin-vibrancy", features = ["tauri-impl"] }
  24. reqwest = { version = "0.11", features = ["json"] }
  25. tokio = { version = "1", features = ["full"] }
  26. log = "0.4.14"
  27. log4rs = "1.0.0"
  28. warp = "0.3"
  29. auto-launch = "0.2"
  30. port_scanner = "0.1.5"
  31. [target.'cfg(windows)'.dependencies]
  32. winreg = { version = "0.10", features = ["transactions"] }
  33. [features]
  34. default = [ "custom-protocol" ]
  35. custom-protocol = [ "tauri/custom-protocol" ]