Cargo.toml 612 B

12345678910111213141516171819202122
  1. [package]
  2. name = "anchor-derive-accounts"
  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 Derive macro for accounts"
  8. edition = "2021"
  9. [lib]
  10. proc-macro = true
  11. [features]
  12. allow-missing-optionals = ["anchor-syn/allow-missing-optionals"]
  13. anchor-debug = ["anchor-syn/anchor-debug"]
  14. idl-build = ["anchor-syn/idl-build"]
  15. init-if-needed = ["anchor-syn/init-if-needed"]
  16. [dependencies]
  17. anchor-syn = { path = "../../syn", version = "0.31.1" }
  18. quote = "1"
  19. syn = { version = "1", features = ["full"] }