Cargo.toml 435 B

1234567891011121314151617181920
  1. [package]
  2. name = "cmz-derive"
  3. version = "0.1.0-rc2"
  4. edition = "2021"
  5. license = "MIT"
  6. repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz"
  7. description = "Derive macros for the cmz crate"
  8. [lib]
  9. proc-macro = true
  10. [dependencies]
  11. cmz-core = "0.1.0-rc2"
  12. syn = { version = "2.0", features = ["extra-traits", "visit-mut"] }
  13. quote = "1.0"
  14. darling = "0.20"
  15. proc-macro2 = "1.0"
  16. [patch.crates-io]
  17. cmz-core = { path = "../cmz-core" }