123456789101112131415161718192021 |
- [package]
- name = "rustructure-macros"
- version = "0.2.0"
- edition = "2021"
- description = "Macros for rustructure crate."
- readme = "../README.md"
- authors = [
- "Kestrel <kestrel@flying-kestrel.ca>"
- ]
- repository = "https://git.flying-kestrel.ca/kestrel/rustructure"
- license = "BSD-4-Clause"
- # 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"] }
- proc-macro2 = "1.0"
- quote = "1.0"
|