Cargo.toml 700 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "anchor-client"
  3. version = "0.31.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. mock = []
  15. [dependencies]
  16. anchor-lang = { path = "../lang", version = "0.31.1" }
  17. anyhow = "1"
  18. futures = "0.3"
  19. regex = "1"
  20. serde = { version = "1", features = ["derive"] }
  21. solana-account-decoder = "2"
  22. solana-pubsub-client = "2"
  23. solana-rpc-client = "2"
  24. solana-rpc-client-api = "2"
  25. solana-sdk = "2"
  26. thiserror = "1"
  27. tokio = { version = "1", features = ["rt", "sync"] }
  28. url = "2"