Cargo.crate-manifest 833 B

12345678910111213141516171819202122232425262728
  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. [lib]
  11. name = "tauri_app_lib"
  12. crate-type = ["staticlib", "cdylib", "rlib"]
  13. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  14. [build-dependencies]
  15. tauri-build = {{ tauri_build_dep }}
  16. [dependencies]
  17. tauri = {{ tauri_example_dep }}
  18. tauri-plugin-{{ plugin_name }} = { path = "../../../" }
  19. [features]
  20. # this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
  21. # 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.
  22. # DO NOT REMOVE!!
  23. custom-protocol = [ "tauri/custom-protocol" ]