Cargo.toml 472 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "cuckoo"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. utils = { path = "../utils" }
  8. bincode = "2.0.0-rc.2"
  9. funty = "2.0.0"
  10. libm = "0.2.5"
  11. rand = "0.8.5"
  12. rand_chacha = "0.3.1"
  13. [dev-dependencies]
  14. criterion = "0.4.0"
  15. [[bin]]
  16. name = "params"
  17. path = "src/bin/params.rs"
  18. [[bench]]
  19. name = "cuckoo"
  20. harness = false
  21. [[bench]]
  22. name = "hash"
  23. harness = false