Cargo.toml 438 B

1234567891011121314151617
  1. [package]
  2. name = "bench_cpu_intensive"
  3. version = "0.1.0"
  4. description = "A very simple Tauri Application"
  5. edition = "2021"
  6. rust-version = "1.64"
  7. [build-dependencies]
  8. tauri-build = { path = "../../../../../core/tauri-build", features = [ "codegen" ] }
  9. [dependencies]
  10. serde_json.workspace = true
  11. serde.workspace = true
  12. tauri = { path = "../../../../../core/tauri", features = [] }
  13. [features]
  14. custom-protocol = [ "tauri/custom-protocol" ]