Cargo.toml 446 B

1234567891011121314151617
  1. [package]
  2. name = "anchor-derive-space"
  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 to automatically calculate the size of a structure or an enum"
  8. rust-version = "1.60"
  9. edition = "2021"
  10. [lib]
  11. proc-macro = true
  12. [dependencies]
  13. proc-macro2 = "1"
  14. quote = "1"
  15. syn = { version = "1", features = ["extra-traits"] }