Cargo.toml 739 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "anchor-attribute-program"
  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 defining a program"
  8. edition = "2021"
  9. [lib]
  10. proc-macro = true
  11. [features]
  12. anchor-debug = ["anchor-syn/anchor-debug"]
  13. idl-build = ["anchor-syn/idl-build"]
  14. interface-instructions = ["anchor-syn/interface-instructions"]
  15. [dependencies]
  16. anchor-lang-idl = { path = "../../../idl", version = "0.1.2", features = ["convert"] }
  17. anchor-syn = { path = "../../syn", version = "0.31.1" }
  18. anyhow = "1"
  19. bs58 = "0.5"
  20. heck = "0.3"
  21. proc-macro2 = "1"
  22. quote = "1"
  23. serde_json = "1"
  24. syn = { version = "1", features = ["full"] }