Cargo.toml 608 B

1234567891011121314151617181920212223242526
  1. workspace = {}
  2. [package]
  3. name = "tauri_bench"
  4. version = "0.1.0"
  5. authors = [ "Tauri Programme within The Commons Conservancy" ]
  6. edition = "2021"
  7. rust-version = "1.64"
  8. license = "Apache-2.0 OR MIT"
  9. description = "Cross-platform WebView rendering library"
  10. repository = "https://github.com/tauri-apps/wry"
  11. [dependencies]
  12. anyhow = "1.0.40"
  13. time = { version = "0.3", features = ["formatting"] }
  14. tempfile.workspace = true
  15. serde_json.workspace = true
  16. serde.workspace = true
  17. [[bin]]
  18. name = "run_benchmark"
  19. path = "src/run_benchmark.rs"
  20. [[bin]]
  21. name = "build_benchmark_jsons"
  22. path = "src/build_benchmark_jsons.rs"