Cargo.toml 577 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "anchor-attribute-interface"
  3. version = "0.24.1"
  4. authors = ["Serum Foundation <foundation@projectserum.com>"]
  5. repository = "https://github.com/project-serum/anchor"
  6. license = "Apache-2.0"
  7. description = "Attribute for defining a program interface trait"
  8. rust-version = "1.56"
  9. edition = "2021"
  10. [lib]
  11. proc-macro = true
  12. [features]
  13. anchor-debug = ["anchor-syn/anchor-debug"]
  14. [dependencies]
  15. proc-macro2 = "1.0"
  16. quote = "1.0"
  17. syn = { version = "1.0.60", features = ["full"] }
  18. anyhow = "1.0.32"
  19. anchor-syn = { path = "../../syn", version = "0.24.1" }
  20. heck = "0.3.2"