1234567891011121314151617181920 |
- [package]
- name = "sigma-compiler-core"
- version = "0.1.0"
- edition = "2021"
- license = "MIT"
- repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/sigma-compiler"
- description = "Core functionality for the macros in the sigma-compiler crate"
- [dependencies]
- syn = { version = "2.0", features = ["extra-traits", "visit", "visit-mut", "full"] }
- quote = "1.0"
- proc-macro2 = "1.0"
- clap = { version = "4.5", features = ["derive"] }
- prettyplease = "0.2"
- [features]
- # Dump (to stdout) the value of the instance on both the prover's and
- # verifier's side. They should match.
- dump = []
- # default = ["dump"]
|