Cargo.toml 793 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "app"
  3. version = { workspace = true }
  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. serde_json = "1.0"
  15. serde = { version = "1.0", features = ["derive"] }
  16. tauri = { path = "../../../core/tauri", features = [] }
  17. core-api = { path = "../core" }
  18. [features]
  19. # by default Tauri runs in production mode
  20. # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
  21. default = [ "custom-protocol" ]
  22. # this feature is used for production builds where `devPath` points to the filesystem
  23. # DO NOT remove this
  24. custom-protocol = [ "tauri/custom-protocol" ]