Cargo.toml 856 B

12345678910111213141516171819202122
  1. [package]
  2. name = "sigma-compiler"
  3. version = "0.1.0-rc2"
  4. edition = "2021"
  5. license = "MIT"
  6. repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/sigma-compiler"
  7. description = "Crate for automatically generating code for sigma zero-knowledge proof protocols of more complex statements than are supported by the sigma-proofs crate. The statements given to this crate are compiled into statements about linear combinations of points, and transformed into the sigma-proofs API."
  8. [dependencies]
  9. group = "0.13"
  10. rand = "0.8.5"
  11. sigma-compiler-derive = "0.1.0-rc2"
  12. sigma-proofs = "0.1.0-sigma"
  13. subtle = "2.6"
  14. [dev-dependencies]
  15. curve25519-dalek = { version = "4", features = [ "group", "rand_core", "digest" ] }
  16. sha2 = "0.10"
  17. [patch.crates-io]
  18. sigma-compiler-derive = { path = "sigma-compiler-derive" }
  19. sigma-compiler-core = { path = "sigma-compiler-core" }