Cargo.toml 780 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "app"
  3. version = "0.1.0"
  4. description = "clash verge"
  5. authors = ["zzzgydi"]
  6. license = "GPL-3.0"
  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. 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. reqwest = { version = "0.11", features = ["json"] }
  21. tokio = { version = "1", features = ["full"] }
  22. log = "0.4.14"
  23. log4rs = "1.0.0"
  24. [target.'cfg(windows)'.dependencies]
  25. winreg = { version = "0.10", features = ["transactions"] }
  26. [features]
  27. default = [ "custom-protocol" ]
  28. custom-protocol = [ "tauri/custom-protocol" ]