Cargo.toml 475 B

123456789101112131415161718
  1. [package]
  2. name = "microrm-macros"
  3. version = "0.4.1"
  4. edition = "2021"
  5. license = "BSD-4-Clause"
  6. authors = ["Kestrel <kestrel@flying-kestrel.ca>"]
  7. description = "Procedural macro implementations for the microrm crate."
  8. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  9. [lib]
  10. proc-macro = true
  11. [dependencies]
  12. syn = { version = "1.0", features = ["derive", "extra-traits"] }
  13. quote = "1.0"
  14. convert_case = "0.5"
  15. proc-macro2 = "1.0"