Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.3", features = [] }
  13. [dependencies]
  14. anyhow = "1.0"
  15. dirs = "4.0.0"
  16. dunce = "1.0.2"
  17. chrono = "0.4.19"
  18. serde_json = "1.0"
  19. serde_yaml = "0.8"
  20. serde = { version = "1.0", features = ["derive"] }
  21. tauri = { version = "1.0.0-rc.3", features = ["shell-all", "system-tray", "updater", "window-all"] }
  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. which = "4.2.2"
  30. auto-launch = "0.2"
  31. port_scanner = "0.1.5"
  32. [target.'cfg(windows)'.dependencies]
  33. winreg = { version = "0.10", features = ["transactions"] }
  34. [features]
  35. default = [ "custom-protocol" ]
  36. custom-protocol = [ "tauri/custom-protocol" ]