3
1

Cargo.toml 681 B

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