Cargo.toml 620 B

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