Cargo.toml 432 B

1234567891011121314151617
  1. [package]
  2. name = "sigma-compiler-core"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. syn = { version = "2.0", features = ["extra-traits", "visit", "visit-mut", "full"] }
  7. quote = "1.0"
  8. proc-macro2 = "1.0"
  9. clap = { version = "4.5", features = ["derive"] }
  10. prettyplease = "0.2"
  11. [features]
  12. # Dump (to stdout) the value of the instance on both the prover's and
  13. # verifier's side. They should match.
  14. dump = []
  15. # default = ["dump"]