Cargo.toml 646 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "anchor-client"
  3. version = "0.30.1"
  4. authors = ["Anchor Maintainers <accounts@200ms.io>"]
  5. edition = "2021"
  6. license = "Apache-2.0"
  7. description = "An RPC client to interact with Anchor programs"
  8. [package.metadata.docs.rs]
  9. all-features = true
  10. rustdoc-args = ["--cfg", "docsrs"]
  11. [features]
  12. async = []
  13. debug = []
  14. [dependencies]
  15. anchor-lang = { path = "../lang", version = "0.30.1" }
  16. anyhow = "1"
  17. futures = "0.3"
  18. regex = "1"
  19. serde = { version = "1", features = ["derive"] }
  20. solana-account-decoder = "1.17.3"
  21. solana-client = "1.17.3"
  22. solana-sdk = "1.17.3"
  23. thiserror = "1"
  24. tokio = { version = "1", features = ["rt", "sync"] }
  25. url = "2"