Cargo.toml 344 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-mut", "full"] }
  7. quote = "1.0"
  8. proc-macro2 = "1.0"
  9. [features]
  10. # Dump (to stdout) the public params on both the prover's and verifier's
  11. # side. They should match.
  12. dump = []
  13. # default = ["dump"]