Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "app"
  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 = "app"
  9. edition = "2021"
  10. build = "build.rs"
  11. [build-dependencies]
  12. tauri-build = { version = "1.0.0-beta.4" }
  13. [dependencies]
  14. dirs = "4.0.0"
  15. chrono = "0.4.19"
  16. serde_json = "1.0"
  17. serde_yaml = "0.8"
  18. serde = { version = "1.0", features = ["derive"] }
  19. # tauri = { version = "1.0.0-beta.8", features = ["api-all", "system-tray"] }
  20. # tauri = { git = "https://github.com/tauri-apps/tauri", rev = "5e0d59ec", features = ["api-all", "system-tray"] }
  21. tauri = { git = "https://github.com/tauri-apps/tauri", branch = "next", features = ["api-all", "system-tray"] }
  22. tauri-plugin-shadows = { git = "https://github.com/tauri-apps/tauri-plugin-shadows", features = ["tauri-impl"] }
  23. reqwest = { version = "0.11", features = ["json"] }
  24. tokio = { version = "1", features = ["full"] }
  25. log = "0.4.14"
  26. log4rs = "1.0.0"
  27. warp = "0.3"
  28. port_scanner = "0.1.5"
  29. [target.'cfg(windows)'.dependencies]
  30. winreg = { version = "0.10", features = ["transactions"] }
  31. [features]
  32. default = [ "custom-protocol" ]
  33. custom-protocol = [ "tauri/custom-protocol" ]