Cargo.toml 1.4 KB

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