Cargo.toml 846 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "wnfs-bench"
  3. version = "0.2.0"
  4. description = "WNFS Benchmarks"
  5. publish = false
  6. edition = "2021"
  7. license = "Apache-2.0"
  8. [dev-dependencies]
  9. async-std = { version = "1.11", features = ["attributes"] }
  10. blake3 = { version = "1.4", features = ["traits-preview"] }
  11. chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
  12. criterion = { version = "0.4", features = ["async_std"] }
  13. proptest = "1.1"
  14. rand = "0.8"
  15. wnfs = { path = "../wnfs" }
  16. wnfs-common = { path = "../wnfs-common", features = ["test_utils"] }
  17. wnfs-hamt = { path = "../wnfs-hamt", features = ["test_utils"] }
  18. wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", features = ["num-bigint-dig", "rug"] }
  19. [[bench]]
  20. name = "hamt"
  21. harness = false
  22. path = "hamt.rs"
  23. [[bench]]
  24. name = "nameaccumulator"
  25. harness = false
  26. path = "nameaccumulator.rs"