Cargo.toml 504 B

123456789101112131415161718192021222324252627
  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. [dev-dependencies]
  16. criterion = "0.4.0"
  17. [[bench]]
  18. name = "field"
  19. harness = false
  20. [[bench]]
  21. name = "permutation"
  22. harness = false