Cargo.toml 511 B

123456789101112131415161718192021
  1. [package]
  2. name = "rustructure-macros"
  3. version = "0.2.0"
  4. edition = "2021"
  5. description = "Macros for rustructure crate."
  6. readme = "../README.md"
  7. authors = [
  8. "Kestrel <kestrel@flying-kestrel.ca>"
  9. ]
  10. repository = "https://git.flying-kestrel.ca/kestrel/rustructure"
  11. license = "BSD-4-Clause"
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [lib]
  14. proc-macro = true
  15. [dependencies]
  16. syn = { version = "1.0", features = ["derive"] }
  17. proc-macro2 = "1.0"
  18. quote = "1.0"