Cargo.toml 828 B

1234567891011121314151617181920212223242526
  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.60"
  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. serde_json = "1.0"
  15. serde = { version = "1.0", features = ["derive"] }
  16. tauri = {{ tauri_example_dep }}
  17. tauri-plugin-{{ plugin_name }} = { path = "../../../" }
  18. [features]
  19. # this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
  20. # 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.
  21. # DO NOT REMOVE!!
  22. custom-protocol = [ "tauri/custom-protocol" ]