Cargo.toml 718 B

12345678910111213141516171819202122232425
  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.59"
  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. # by default Tauri runs in production mode
  18. # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
  19. default = [ "custom-protocol" ]
  20. # this feature is used for production builds where `devPath` points to the filesystem
  21. # DO NOT remove this
  22. custom-protocol = [ "tauri/custom-protocol" ]