| 1234567891011121314151617 |
- [package]
- name = "sigma_compiler_derive"
- version = "0.1.0"
- edition = "2021"
- [lib]
- proc-macro = true
- [dependencies]
- syn = { version = "2.0", features = ["extra-traits", "visit-mut", "full"] }
- quote = "1.0"
- [features]
- # Dump (to stdout) the public params on both the prover's and verifier's
- # side. They should match.
- dump = []
- # default = ["dump"]
|