Cargo.toml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. [package]
  2. name = "clash-verge"
  3. version = "1.7.7"
  4. description = "clash verge"
  5. authors = ["zzzgydi", "wonfen", "MystiPanda"]
  6. license = "GPL-3.0-only"
  7. repository = "https://github.com/clash-verge-rev/clash-verge-rev.git"
  8. default-run = "clash-verge"
  9. edition = "2021"
  10. build = "build.rs"
  11. [build-dependencies]
  12. tauri-build = { version="1", features = [] }
  13. [dependencies]
  14. warp = "0.3"
  15. anyhow = "1.0"
  16. dirs = "5.0"
  17. open = "5.1"
  18. log = "0.4"
  19. dunce = "1.0"
  20. log4rs = "1"
  21. nanoid = "0.4"
  22. chrono = "0.4"
  23. sysinfo = "0.30"
  24. boa_engine = "0.18"
  25. serde_json = "1.0"
  26. serde_yaml = "0.9"
  27. once_cell = "1.19"
  28. port_scanner = "0.1.5"
  29. delay_timer = "0.11"
  30. parking_lot = "0.12"
  31. auto-launch = "0.5.0"
  32. percent-encoding = "2.3.1"
  33. window-shadows = { version = "0.2" }
  34. tokio = { version = "1", features = ["full"] }
  35. serde = { version = "1.0", features = ["derive"] }
  36. reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
  37. sysproxy = { git="https://github.com/zzzgydi/sysproxy-rs", branch = "main" }
  38. tauri = { version="1", features = [ "fs-read-file", "fs-exists", "path-all", "protocol-asset", "dialog-open", "notification-all", "icon-png", "icon-ico", "clipboard-all", "global-shortcut-all", "process-all", "shell-all", "system-tray", "updater", "window-all", "devtools"] }
  39. network-interface = { version = "2.0.0", features = ["serde"] }
  40. [target.'cfg(windows)'.dependencies]
  41. runas = "=1.2.0"
  42. deelevate = "0.2.0"
  43. winreg = "0.52.0"
  44. [target.'cfg(target_os = "linux")'.dependencies]
  45. users = "0.11.0"
  46. #openssl
  47. [features]
  48. default = ["custom-protocol"]
  49. custom-protocol = ["tauri/custom-protocol"]
  50. verge-dev = []
  51. [profile.release]
  52. panic = "abort"
  53. codegen-units = 1
  54. lto = true
  55. opt-level = "s"