Cargo.toml 594 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "anchor-syn"
  3. version = "0.4.4"
  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. hash = []
  12. default = []
  13. [dependencies]
  14. proc-macro2 = "1.0"
  15. quote = "1.0"
  16. syn = { version = "1.0.60", features = ["full", "extra-traits", "parsing"] }
  17. anyhow = "1.0.32"
  18. heck = "0.3.1"
  19. serde = { version = "1.0.122", features = ["derive"] }
  20. serde_json = "1.0"
  21. sha2 = "0.9.2"
  22. thiserror = "1.0"
  23. bs58 = "0.3.1"