3
1

Cargo.toml 646 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "sigma-compiler-derive"
  3. version = "0.1.0"
  4. edition = "2021"
  5. license = "MIT"
  6. repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/sigma-compiler"
  7. description = "Derive macros for the sigma-compiler crate"
  8. [lib]
  9. proc-macro = true
  10. [dependencies]
  11. sigma-compiler-core = "0.1.0"
  12. syn = "2.0"
  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 = [ "sigma-compiler-core/dump" ]
  19. [patch.crates-io]
  20. sigma-compiler-core = { path = "../sigma-compiler-core" }