Cargo.toml 439 B

12345678910111213141516171819202122
  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. aes = "0.8.2"
  9. blake3 = "1.3.3"
  10. ff = { version = "0.13.0", features = ["derive"] }
  11. num = "0.4.0"
  12. rand = "0.8.5"
  13. rand_chacha = "0.3.1"
  14. [dev-dependencies]
  15. criterion = "0.4.0"
  16. [[bench]]
  17. name = "permutation"
  18. harness = false