Cargo.toml 758 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "app"
  3. version = "0.1.0"
  4. description = "clash verge"
  5. authors = ["zzzgydi"]
  6. license = "MIT"
  7. repository = ""
  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. serde_json = "1.0"
  16. serde_yaml = "0.8"
  17. serde = { version = "1.0", features = ["derive"] }
  18. tauri = { version = "1.0.0-beta.8", features = ["api-all", "system-tray"] }
  19. reqwest = { version = "0.11", features = ["json"] }
  20. tokio = { version = "1", features = ["full"] }
  21. log = "0.4.14"
  22. log4rs = "1.0.0"
  23. [target.'cfg(windows)'.dependencies]
  24. winreg = { version = "0.10", features = ["transactions"] }
  25. [features]
  26. default = [ "custom-protocol" ]
  27. custom-protocol = [ "tauri/custom-protocol" ]