Cargo.toml 351 B

1234567891011121314151617
  1. [package]
  2. name = "sigma_compiler_derive"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [lib]
  6. proc-macro = true
  7. [dependencies]
  8. syn = { version = "2.0", features = ["extra-traits", "visit-mut", "full"] }
  9. quote = "1.0"
  10. [features]
  11. # Dump (to stdout) the public params on both the prover's and verifier's
  12. # side. They should match.
  13. dump = []
  14. # default = ["dump"]