Cargo.toml 459 B

123456789101112131415161718192021222324
  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. aes = "0.8.1"
  8. blake3 = "1.3.3"
  9. ff = { version = "0.13.0", features = ["derive"] }
  10. itertools = "0.10.5"
  11. num = "0.4.0"
  12. num-bigint = "0.4.3"
  13. num-traits = "0.2.15"
  14. rand = "0.8.5"
  15. rand_chacha = "0.3.1"
  16. [dev-dependencies]
  17. criterion = "0.4.0"
  18. [[bench]]
  19. name = "permutation"
  20. harness = false