Cargo.toml 302 B

12345678910111213141516
  1. [package]
  2. name = "zklisp"
  3. version = "0.1.0"
  4. authors = ["mileschet"]
  5. [dependencies]
  6. lazy_static = "1.4.0"
  7. regex = "1.3.1"
  8. itertools = "0.8.0"
  9. fnv = "1.0.6"
  10. bellman = { version = "0.8", default-features = false, features = ["groth16"] }
  11. sapvi = { path = "../" }
  12. [[bin]]
  13. name = "lisp"
  14. path = "lisp.rs"