Cargo.toml 564 B

12345678910111213141516171819202122
  1. [package]
  2. name = "anchor-attribute-access-control"
  3. version = "0.11.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 instruction access control"
  8. edition = "2018"
  9. [lib]
  10. proc-macro = true
  11. [features]
  12. anchor-debug = ["anchor-syn/anchor-debug"]
  13. [dependencies]
  14. proc-macro2 = "1.0"
  15. quote = "1.0"
  16. syn = { version = "1.0.60", features = ["full"] }
  17. anyhow = "1.0.32"
  18. anchor-syn = { path = "../../syn", version = "0.11.0" }
  19. regex = "1.0"