Cargo.toml 460 B

1234567891011121314151617
  1. [package]
  2. name = "anchor-attribute-error"
  3. version = "0.1.0"
  4. authors = ["Serum Foundation <foundation@projectserum.com>"]
  5. repository = "https://github.com/project-serum/anchor"
  6. license = "Apache-2.0"
  7. description = "Anchor attribute macro for creating error types"
  8. edition = "2018"
  9. [lib]
  10. proc-macro = true
  11. [dependencies]
  12. proc-macro2 = "1.0"
  13. quote = "1.0"
  14. syn = { version = "=1.0.57", features = ["full"] }
  15. anchor-syn = { path = "../../syn", version = "0.1.0" }