3
1

Cargo.toml 606 B

1234567891011121314151617181920
  1. [package]
  2. name = "sigma-compiler-core"
  3. version = "0.1.0"
  4. edition = "2021"
  5. license = "MIT"
  6. description = "Core functionality for the macros in the sigma-compiler crate"
  7. [dependencies]
  8. syn = { version = "2.0", features = ["extra-traits", "visit", "visit-mut", "full"] }
  9. quote = "1.0"
  10. proc-macro2 = "1.0"
  11. clap = { version = "4.5", features = ["derive"] }
  12. prettyplease = "0.2"
  13. [features]
  14. # Dump (to stdout or to a string) the value of the instance on both the
  15. # prover's and verifier's side. They should match.
  16. # Note: enable this feature (if you want it) in the sigma-compiler
  17. # crate, not here.
  18. dump = []