Cargo.toml 830 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "cmz"
  3. version = "0.1.0-rc1"
  4. edition = "2021"
  5. license = "MIT"
  6. repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz"
  7. description = "A crate to automatically create protocols that use CMZ14 or µCMZ credentials, by specifying an extremely compact description of the protocol."
  8. [dependencies]
  9. cmz-derive = "0.1.0-rc1"
  10. ff = "0.13"
  11. generic_static = "0.2"
  12. group = "0.13"
  13. hex = { version = "0.4", features = [ "serde" ] }
  14. lazy_static = "1"
  15. rand = "0.8.5"
  16. serde = { version = "1", features = [ "derive" ] }
  17. serde_bytes = "0.11"
  18. serde_with = "3"
  19. sigma-compiler = "0.1.0-rc1"
  20. thiserror = "2"
  21. [dev-dependencies]
  22. bincode = "1"
  23. curve25519-dalek = { version = "4", features = [ "group", "rand_core", "digest" ] }
  24. sha2 = "0.10"
  25. [patch.crates-io]
  26. cmz-derive = { path = "cmz-derive" }
  27. cmz-core = { path = "cmz-core" }