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