Cargo.toml 494 B

12345678910111213141516171819
  1. [package]
  2. name = "microrm-macros"
  3. version = "0.1.2"
  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. # proc_macro = "*"
  13. syn = { version = "1.0", features = ["derive", "extra-traits"] }
  14. quote = "1.0"
  15. convert_case = "0.5"
  16. proc-macro2 = "1.0"