Cargo.toml 843 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "halo2_examples"
  3. version = "0.1.0"
  4. authors = ["narodnik <x@x.org>"]
  5. edition = "2018"
  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.1.2"
  11. bitvec = "0.22"
  12. rand = "0.8.4"
  13. arrayvec = "0.7.0"
  14. lazy_static = "1"
  15. bigint = "4"
  16. subtle = "2.3"
  17. halo2 = { git="https://github.com/zcash/halo2.git", rev = "27c4187673a9c6ade13fbdbd4f20955530c22d7f" }
  18. halo2_utilities = { git ="https://github.com/parazyd/orchard.git", rev = "ae83fe91e680f5cb9a20f357d239cc2c81191ef8" }
  19. halo2_ecc = { git ="https://github.com/parazyd/orchard.git", rev = "ae83fe91e680f5cb9a20f357d239cc2c81191ef8" }
  20. [dependencies.halo2_poseidon]
  21. git = "https://github.com/parazyd/orchard.git"
  22. rev = "ae83fe91e680f5cb9a20f357d239cc2c81191ef8"
  23. features = ["halo2"]