Cargo.toml 435 B

1234567891011121314151617181920
  1. [package]
  2. name = "app"
  3. version = "0.1.0"
  4. description = "A Tauri App"
  5. authors = ["you"]
  6. license = ""
  7. repository = ""
  8. default-run = "app"
  9. edition = "2021"
  10. rust-version = "1.65"
  11. [build-dependencies]
  12. tauri-build = { path = "../../../../core/tauri-build", features = [] }
  13. [dependencies]
  14. api = { path = "../api" }
  15. tauri = { path = "../../../../core/tauri", features = ["dialog"] }
  16. [features]
  17. custom-protocol = [ "tauri/custom-protocol" ]