Cargo.toml 361 B

123456789101112131415
  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. [features]
  10. # Dump (to stdout) the value of the instance on both the prover's and
  11. # verifier's side. They should match.
  12. dump = []
  13. # default = ["dump"]