3
2

Cargo.toml 363 B

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