Cargo.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.5", features = [] }
  13. [dependencies]
  14. anyhow = "1.0"
  15. dirs = "4.0.0"
  16. open = "2.1.1"
  17. dunce = "1.0.2"
  18. nanoid = "0.4.0"
  19. chrono = "0.4.19"
  20. serde_json = "1.0"
  21. serde_yaml = "0.8"
  22. delay_timer = "0.11.1"
  23. parking_lot = "0.12.0"
  24. serde = { version = "1.0", features = ["derive"] }
  25. tauri = { version = "1.0.0-rc.6", features = ["process-all", "shell-all", "system-tray", "updater", "window-all"] }
  26. window-shadows = { git = "https://github.com/tauri-apps/window-shadows" }
  27. window-vibrancy = { git = "https://github.com/tauri-apps/window-vibrancy" }
  28. reqwest = { version = "0.11", features = ["json"] }
  29. tokio = { version = "1", features = ["full"] }
  30. log = "0.4.14"
  31. log4rs = "1.0.0"
  32. warp = "0.3"
  33. which = "4.2.2"
  34. auto-launch = "0.2"
  35. port_scanner = "0.1.5"
  36. [target.'cfg(windows)'.dependencies]
  37. winreg = { version = "0.10", features = ["transactions"] }
  38. [features]
  39. default = ["custom-protocol"]
  40. custom-protocol = ["tauri/custom-protocol"]
  41. verge-dev = []
  42. debug-yml = []
  43. [profile.release]
  44. panic = "abort"
  45. codegen-units = 1
  46. lto = true
  47. opt-level = "s"