Cargo.toml 438 B

123456789101112131415161718
  1. [package]
  2. name = "splashscreen"
  3. version = "0.1.0"
  4. description = "An example Tauri Application with a splashscreen"
  5. edition = "2021"
  6. rust-version = "1.56"
  7. license = "Apache-2.0 OR MIT"
  8. [build-dependencies]
  9. tauri-build = { path = "../../../core/tauri-build" }
  10. [dependencies]
  11. tauri = { path = "../../../core/tauri", features = ["api-all"] }
  12. [features]
  13. default = [ "custom-protocol" ]
  14. custom-protocol = [ "tauri/custom-protocol" ]
  15. ui = []