Cargo.toml 509 B

12345678910111213141516171819
  1. [package]
  2. name = "anchor-attribute-constant"
  3. version = "0.22.1"
  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 constant types"
  8. edition = "2018"
  9. [lib]
  10. proc-macro = true
  11. [features]
  12. anchor-debug = ["anchor-syn/anchor-debug"]
  13. [dependencies]
  14. proc-macro2 = "1.0"
  15. syn = { version = "1.0.60", features = ["full"] }
  16. anchor-syn = { path = "../../syn", version = "0.22.1" }