Cargo.toml 545 B

123456789101112131415161718192021
  1. [package]
  2. name = "anchor-syn"
  3. version = "0.0.0-alpha.0"
  4. authors = ["Serum Foundation <foundation@projectserum.com>"]
  5. repository = "https://github.com/project-serum/anchor"
  6. license = "Apache-2.0"
  7. description = "Anchor syntax parsing and code generation tools"
  8. edition = "2018"
  9. [features]
  10. idl = []
  11. default = []
  12. [dependencies]
  13. proc-macro2 = "1.0"
  14. quote = "1.0"
  15. syn = { version = "=1.0.57", features = ["full", "extra-traits", "parsing"] }
  16. anyhow = "1.0.32"
  17. heck = "0.3.1"
  18. serde = { version = "1.0.118", features = ["derive"] }
  19. serde_json = "1.0"