Cargo.toml 371 B

1234567891011121314151617
  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"