| 1234567891011121314151617181920212223242526272829303132 |
- [package]
- name = "cmz"
- version = "0.1.0"
- edition = "2021"
- license = "MIT"
- description = "A crate to automatically create protocols that use CMZ14 or µCMZ credentials, by specifying an extremely compact description of the protocol."
- [dependencies]
- cmz-derive = { path = "cmz-derive" }
- ff = "0.13"
- generic_static = "0.2"
- group = "0.13"
- hex = { version = "0.4", features = [ "serde" ] }
- lazy_static = "1"
- rand = "0.8.5"
- serde = { version = "1", features = [ "derive" ] }
- serde_bytes = "0.11"
- serde_with = "3"
- sigma-compiler = { path = "../sigma-compiler" }
- thiserror = "2"
- [dev-dependencies]
- bincode = "1"
- chrono = "0.4"
- curve25519-dalek = { version = "4", features = [ "group", "rand_core", "digest" ] }
- sha2 = "0.10"
- spongefish = {path = "../spongefish/spongefish", features = ["curve25519-dalek"] }
- [features]
- # Dump (to stdout or to a string) the value of the instance on both the
- # prover's and verifier's side. They should match.
- dump = [ "sigma-compiler/dump" ]
|