Cargo.toml 464 B

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