Cargo.toml 497 B

123456789101112131415161718
  1. [package]
  2. name = "anchor-attribute-event"
  3. version = "0.3.0"
  4. authors = ["Serum Foundation <foundation@projectserum.com>"]
  5. repository = "https://github.com/project-serum/anchor"
  6. license = "Apache-2.0"
  7. description = "Anchor attribute macro for defining an event"
  8. edition = "2018"
  9. [lib]
  10. proc-macro = true
  11. [dependencies]
  12. proc-macro2 = "1.0"
  13. quote = "1.0"
  14. syn = { version = "=1.0.57", features = ["full"] }
  15. anyhow = "1.0.32"
  16. anchor-syn = { path = "../../syn", version = "0.3.0", features = ["hash"] }