Cargo.toml 514 B

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