Cargo.toml 441 B

1234567891011121314151617
  1. [package]
  2. name = "anchor-client"
  3. version = "0.18.2"
  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.18.2" }
  10. anyhow = "1.0.32"
  11. regex = "1.4.5"
  12. serde = { version = "1.0.122", features = ["derive"] }
  13. solana-client = "1.7.2"
  14. solana-sdk = "1.7.2"
  15. thiserror = "1.0.20"
  16. url = "2.2.2"