Cargo.toml 558 B

12345678910111213141516171819202122
  1. [package]
  2. name = "anchor-derive-serde"
  3. version = "0.29.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 serialization and deserialization"
  8. rust-version = "1.60"
  9. edition = "2021"
  10. [lib]
  11. proc-macro = true
  12. [features]
  13. idl-build = ["anchor-syn/idl-build"]
  14. [dependencies]
  15. anchor-syn = { path = "../../syn", version = "0.29.0" }
  16. borsh-derive-internal = ">=0.9, <0.11"
  17. proc-macro2 = "1"
  18. syn = { version = "1", features = ["full"] }
  19. quote = "1"