Cargo.toml 511 B

1234567891011121314151617181920
  1. [package]
  2. name = "anchor-attribute-access-control"
  3. version = "0.31.1"
  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 instruction access control"
  8. edition = "2021"
  9. [lib]
  10. proc-macro = true
  11. [features]
  12. anchor-debug = ["anchor-syn/anchor-debug"]
  13. [dependencies]
  14. anchor-syn = { path = "../../syn", version = "0.31.1" }
  15. proc-macro2 = "1"
  16. quote = "1"
  17. syn = { version = "1", features = ["full"] }