Cargo.toml 604 B

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