Cargo.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 = "0.0"
  18. [patch.crates-io]
  19. halo2 = { git = "https://github.com/zcash/halo2.git", rev = "27c4187673a9c6ade13fbdbd4f20955530c22d7f" }
  20. [dependencies.halo2_poseidon]
  21. git = "https://github.com/parazyd/orchard.git"
  22. #rev = "0d14f2390734e4710fc24a976f037dae3a6e7ac8"
  23. rev = "f9cc01c21010b31988129f9cbc2ca8c0bdbf2ee9"
  24. features = ["halo2"]
  25. [dependencies.halo2_utilities]
  26. git = "https://github.com/parazyd/orchard.git"
  27. #rev = "0d14f2390734e4710fc24a976f037dae3a6e7ac8"
  28. rev = "f9cc01c21010b31988129f9cbc2ca8c0bdbf2ee9"
  29. [dependencies.halo2_ecc]
  30. git = "https://github.com/parazyd/orchard.git"
  31. #rev = "0d14f2390734e4710fc24a976f037dae3a6e7ac8"
  32. rev = "f9cc01c21010b31988129f9cbc2ca8c0bdbf2ee9"
  33. [dependencies.sinsemilla]
  34. git = "https://github.com/parazyd/orchard.git"
  35. #rev = "0d14f2390734e4710fc24a976f037dae3a6e7ac8"
  36. rev = "f9cc01c21010b31988129f9cbc2ca8c0bdbf2ee9"
  37. [dependencies.orchard]
  38. git = "https://github.com/parazyd/orchard.git"
  39. rev = "f9cc01c21010b31988129f9cbc2ca8c0bdbf2ee9"