Cargo.toml 511 B

123456789101112131415161718
  1. [package]
  2. name = "api"
  3. version = "0.1.0"
  4. description = "An example Tauri Application showcasing the api"
  5. edition = "2018"
  6. license = "Apache-2.0 OR MIT"
  7. [build-dependencies]
  8. tauri-build = { path = "../../../core/tauri-build" }
  9. [dependencies]
  10. serde_json = "1.0"
  11. serde = { version = "1.0", features = [ "derive" ] }
  12. tauri = { path = "../../../core/tauri", features = ["api-all", "cli", "menu", "system-tray", "updater"] }
  13. [features]
  14. default = [ "custom-protocol" ]
  15. custom-protocol = [ "tauri/custom-protocol" ]