Cargo.toml 525 B

12345678910111213141516171819
  1. [package]
  2. name = "api"
  3. version = "0.1.0"
  4. description = "An example Tauri Application showcasing the api"
  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. serde_json = "1.0"
  12. serde = { version = "1.0", features = [ "derive" ] }
  13. tauri = { path = "../../../core/tauri", features = ["api-all", "cli", "system-tray", "updater"] }
  14. [features]
  15. default = [ "custom-protocol" ]
  16. custom-protocol = [ "tauri/custom-protocol" ]