Cargo.toml 846 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [package]
  2. name = "utils"
  3. version = "0.1.0"
  4. edition = "2021"
  5. description = "utils for the Ramen project"
  6. authors.workspace = true
  7. license.workspace = true
  8. readme.workspace = true
  9. repository.workspace = true
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [dependencies]
  12. communicator = { path = "../communicator" }
  13. bincode = "2.0.0-rc.2"
  14. aes = "0.8.2"
  15. blake3 = "1.3.3"
  16. ff = { version = "0.13.0", features = ["derive"] }
  17. funty = "2.0.0"
  18. libm = "0.2.5"
  19. num = "0.4.0"
  20. rand = "0.8.5"
  21. rand_chacha = "0.3.1"
  22. rug = "1.19.0"
  23. [dev-dependencies]
  24. criterion = "0.4.0"
  25. [[bin]]
  26. name = "cuckoo_params"
  27. path = "src/bin/cuckoo_params.rs"
  28. [[bench]]
  29. name = "cuckoo"
  30. harness = false
  31. [[bench]]
  32. name = "field"
  33. harness = false
  34. [[bench]]
  35. name = "hash"
  36. harness = false
  37. [[bench]]
  38. name = "permutation"
  39. harness = false