Cargo.toml 700 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [package]
  2. name = "utils"
  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. communicator = { path = "../communicator" }
  8. bincode = "2.0.0-rc.2"
  9. aes = "0.8.2"
  10. blake3 = "1.3.3"
  11. ff = { version = "0.13.0", features = ["derive"] }
  12. funty = "2.0.0"
  13. libm = "0.2.5"
  14. num = "0.4.0"
  15. rand = "0.8.5"
  16. rand_chacha = "0.3.1"
  17. rug = "1.19.0"
  18. [dev-dependencies]
  19. criterion = "0.4.0"
  20. [[bin]]
  21. name = "cuckoo_params"
  22. path = "src/bin/cuckoo_params.rs"
  23. [[bench]]
  24. name = "cuckoo"
  25. harness = false
  26. [[bench]]
  27. name = "field"
  28. harness = false
  29. [[bench]]
  30. name = "hash"
  31. harness = false
  32. [[bench]]
  33. name = "permutation"
  34. harness = false