Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [package]
  2. name = "clash-verge"
  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 = "clash-verge"
  9. edition = "2021"
  10. build = "build.rs"
  11. [build-dependencies]
  12. tauri-build = { version = "1.0.0-rc.4", features = [] }
  13. [dependencies]
  14. anyhow = "1.0"
  15. dirs = "4.0.0"
  16. dunce = "1.0.2"
  17. nanoid = "0.4.0"
  18. chrono = "0.4.19"
  19. serde_json = "1.0"
  20. serde_yaml = "0.8"
  21. serde = { version = "1.0", features = ["derive"] }
  22. tauri = { version = "1.0.0-rc.4", features = ["shell-all", "system-tray", "updater", "window-all"] }
  23. window-shadows = { git = "https://github.com/tauri-apps/window-shadows" }
  24. window-vibrancy = { git = "https://github.com/tauri-apps/window-vibrancy" }
  25. reqwest = { version = "0.11", features = ["json"] }
  26. tokio = { version = "1", features = ["full"] }
  27. log = "0.4.14"
  28. log4rs = "1.0.0"
  29. warp = "0.3"
  30. which = "4.2.2"
  31. auto-launch = "0.2"
  32. port_scanner = "0.1.5"
  33. [target.'cfg(windows)'.dependencies]
  34. winreg = { version = "0.10", features = ["transactions"] }
  35. [features]
  36. default = [ "custom-protocol" ]
  37. custom-protocol = [ "tauri/custom-protocol" ]