Cargo.toml 602 B

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