Cargo.toml 522 B

12345678910111213141516171819202122
  1. [package]
  2. name = "anchor-client"
  3. version = "0.26.0"
  4. authors = ["Serum Foundation <foundation@projectserum.com>"]
  5. rust-version = "1.59"
  6. edition = "2021"
  7. license = "Apache-2.0"
  8. description = "Rust client for Anchor programs"
  9. [features]
  10. debug = []
  11. [dependencies]
  12. anchor-lang = { path = "../lang", version = "0.26.0" }
  13. anyhow = "1.0.32"
  14. regex = "1.4.5"
  15. serde = { version = "1.0.122", features = ["derive"] }
  16. solana-client = "1.14.7"
  17. solana-sdk = "1.13.5"
  18. solana-account-decoder = "1.13.5"
  19. thiserror = "1.0.20"
  20. url = "2.2.2"