Cargo.toml 478 B

1234567891011121314151617
  1. [package]
  2. name = "commands"
  3. version = "0.1.0"
  4. description = "A simple Tauri Application showcasing the commands API"
  5. edition = "2018"
  6. [build-dependencies]
  7. tauri-build = { path = "../../../core/tauri-build", features = [ "codegen" ] }
  8. [dependencies]
  9. serde_json = "1.0"
  10. serde = { version = "1.0", features = [ "derive" ] }
  11. tauri = { path = "../../../core/tauri", features = ["api-all"] }
  12. [features]
  13. default = [ "custom-protocol" ]
  14. custom-protocol = [ "tauri/custom-protocol" ]