Cargo.toml 416 B

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