Cargo.toml 662 B

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