Cargo.toml 612 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "anchor-syn"
  3. version = "0.4.5"
  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. quote = "1.0"
  17. syn = { version = "1.0.60", features = ["full", "extra-traits", "parsing"] }
  18. anyhow = "1.0.32"
  19. heck = "0.3.1"
  20. serde = { version = "1.0.122", features = ["derive"] }
  21. serde_json = "1.0"
  22. sha2 = "0.9.2"
  23. thiserror = "1.0"
  24. bs58 = "0.3.1"