Cargo.toml 437 B

12345678910111213141516171819202122
  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. group = "0.10"
  9. [dependencies.halo2]
  10. git = "https://github.com/zcash/halo2.git"
  11. rev = "93aabf26c67fcc7a1d5439c350afcf00f1399aa5"
  12. [[bin]]
  13. name = "simple3"
  14. path = "simple3.rs"
  15. [[bin]]
  16. name = "simple4"
  17. path = "simple4.rs"