Cargo.toml 519 B

12345678910111213141516171819202122232425262728
  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. num = "0.4.0"
  13. rand = "0.8.5"
  14. rand_chacha = "0.3.1"
  15. rug = "1.19.0"
  16. [dev-dependencies]
  17. criterion = "0.4.0"
  18. [[bench]]
  19. name = "field"
  20. harness = false
  21. [[bench]]
  22. name = "permutation"
  23. harness = false