Cargo.toml 600 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "anchor-attribute-event"
  3. version = "0.27.0"
  4. authors = ["Anchor Maintainers <accounts@200ms.io>"]
  5. repository = "https://github.com/coral-xyz/anchor"
  6. license = "Apache-2.0"
  7. description = "Anchor attribute macro for defining an event"
  8. rust-version = "1.60"
  9. edition = "2021"
  10. [lib]
  11. proc-macro = true
  12. [features]
  13. anchor-debug = ["anchor-syn/anchor-debug"]
  14. event-cpi = ["anchor-syn/event-cpi"]
  15. [dependencies]
  16. proc-macro2 = "1.0"
  17. quote = "1.0"
  18. syn = { version = "1.0.60", features = ["full"] }
  19. anyhow = "1.0.32"
  20. anchor-syn = { path = "../../syn", version = "0.27.0", features = ["hash"] }