Cargo.toml 425 B

12345678910111213141516
  1. [package]
  2. name = "anchor-client"
  3. version = "0.7.0"
  4. authors = ["Serum Foundation <foundation@projectserum.com>"]
  5. edition = "2018"
  6. license = "Apache-2.0"
  7. description = "Rust client for Anchor programs"
  8. [dependencies]
  9. anchor-lang = { path = "../lang", version = "0.7.0" }
  10. anyhow = "1.0.32"
  11. regex = "1.4.5"
  12. serde = { version = "1.0.122", features = ["derive"] }
  13. solana-client = "1.6.6"
  14. solana-sdk = "1.6.6"
  15. thiserror = "1.0.20"