Cargo.toml 790 B

1234567891011121314151617181920212223242526272829
  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 = "src/build.rs"
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [build-dependencies]
  13. tauri-build = { version = "1.0.0-beta.4" }
  14. [dependencies]
  15. dirs = "4.0.0"
  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. winreg = { version = "0.10", features = ["transactions"] }
  21. reqwest = { version = "0.11", features = ["json"] }
  22. tokio = { version = "1", features = ["full"] }
  23. [features]
  24. default = [ "custom-protocol" ]
  25. custom-protocol = [ "tauri/custom-protocol" ]