3
1

Cargo.toml 571 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "sigma-compiler-derive"
  3. version = "0.1.0"
  4. edition = "2021"
  5. license = "MIT"
  6. description = "Derive macros for the sigma-compiler crate"
  7. [lib]
  8. proc-macro = true
  9. [dependencies]
  10. sigma-compiler-core = "0.1.0"
  11. syn = "2.0"
  12. [features]
  13. # Dump (to stdout or to a string) the value of the instance on both the
  14. # prover's and verifier's side. They should match.
  15. # Note: enable this feature (if you want it) in the sigma-compiler
  16. # crate, not here.
  17. dump = [ "sigma-compiler-core/dump" ]
  18. [patch.crates-io]
  19. sigma-compiler-core = { path = "../sigma-compiler-core" }