Cargo.toml 687 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "halo2_examples"
  3. version = "0.1.0"
  4. authors = ["narodnik <x@x.org>"]
  5. edition = "2021"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. ff = "0.10"
  9. group = "0.10"
  10. pasta_curves = "0.2.1"
  11. rand = "0.8.4"
  12. hex = "0.4.3"
  13. # Can we delete these?
  14. bitvec = "0.22"
  15. arrayvec = "0.7.0"
  16. lazy_static = "1"
  17. bigint = "4"
  18. subtle = "2.3"
  19. [dependencies.halo2]
  20. version = "=0.1.0-beta.1"
  21. features = ["dev-graph", "gadget-traces", "sanity-checks"]
  22. [dependencies.halo2_gadgets]
  23. git = "https://github.com/parazyd/halo2_gadgets.git"
  24. rev = "8238cb3471b798c76dd53b278524fc80685c7d4f"
  25. features = ["dev-graph", "test-dependencies"]