Cargo.toml 527 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "drk_halo2"
  3. version = "0.1.0"
  4. authors = ["Ivan Jelincic <parazyd@dyne.org>"]
  5. edition = "2021"
  6. [workspace]
  7. [dependencies]
  8. rand = "0.8.4"
  9. ff = "0.11.0"
  10. pasta_curves = "0.2.1"
  11. hex = "0.4.3"
  12. failure = "0.1.8"
  13. anyhow = "1.0.44"
  14. [dependencies.halo2]
  15. version = "=0.1.0-beta.1"
  16. features = ["dev-graph", "gadget-traces", "sanity-checks"]
  17. [dependencies.halo2_gadgets]
  18. git = "https://github.com/parazyd/halo2_gadgets.git"
  19. rev = "b45c527276bb2309f3b256eb5f45ccdcc5bd8c0f"
  20. features = ["dev-graph", "test-dependencies"]