Cargo.toml 737 B

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