Cargo.toml 580 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "anchor-derive-accounts"
  3. version = "0.22.1"
  4. authors = ["Serum Foundation <foundation@projectserum.com>"]
  5. repository = "https://github.com/project-serum/anchor"
  6. license = "Apache-2.0"
  7. description = "Anchor Derive macro for accounts"
  8. edition = "2018"
  9. [lib]
  10. proc-macro = true
  11. [features]
  12. init-if-needed = ["anchor-syn/init-if-needed"]
  13. default = []
  14. anchor-debug = ["anchor-syn/anchor-debug"]
  15. [dependencies]
  16. proc-macro2 = "1.0"
  17. quote = "1.0"
  18. syn = { version = "1.0.60", features = ["full"] }
  19. anyhow = "1.0.32"
  20. anchor-syn = { path = "../../syn", version = "0.22.1" }