Cargo.toml 641 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "anchor-derive-accounts"
  3. version = "0.28.0"
  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. rust-version = "1.60"
  9. edition = "2021"
  10. [lib]
  11. proc-macro = true
  12. [features]
  13. allow-missing-optionals = ["anchor-syn/allow-missing-optionals"]
  14. init-if-needed = ["anchor-syn/init-if-needed"]
  15. default = []
  16. anchor-debug = ["anchor-syn/anchor-debug"]
  17. [dependencies]
  18. anyhow = "1"
  19. proc-macro2 = "1"
  20. quote = "1"
  21. syn = { version = "1", features = ["full"] }
  22. anchor-syn = { path = "../../syn", version = "0.28.0" }