Cargo.toml 645 B

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