Cargo.crate-manifest 758 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "tauri-app"
  3. version = "0.0.0"
  4. description = "A Tauri App"
  5. authors = ["you"]
  6. license = ""
  7. repository = ""
  8. edition = "2021"
  9. rust-version = "1.70"
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [build-dependencies]
  12. tauri-build = {{ tauri_build_dep }}
  13. [dependencies]
  14. tauri = {{ tauri_example_dep }}
  15. tauri-plugin-{{ plugin_name }} = { path = "../../../" }
  16. [features]
  17. # this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
  18. # If you use cargo directly instead of tauri's cli you can use this feature flag to switch between tauri's `dev` and `build` modes.
  19. # DO NOT REMOVE!!
  20. custom-protocol = [ "tauri/custom-protocol" ]