2019-03-12 17:26:07 -07:00
|
|
|
[package]
|
|
|
|
name = "solana-client"
|
2023-01-31 15:48:33 -08:00
|
|
|
version = "1.16.0"
|
2019-03-12 17:26:07 -07:00
|
|
|
description = "Solana Client"
|
2023-01-31 05:07:13 -08:00
|
|
|
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
|
2023-01-24 23:50:41 -08:00
|
|
|
repository = "https://github.com/solana-labs/solana"
|
2023-02-22 18:20:18 -08:00
|
|
|
homepage = "https://solanalabs.com/"
|
2021-03-10 12:46:17 -08:00
|
|
|
documentation = "https://docs.rs/solana-client"
|
2023-01-24 23:50:41 -08:00
|
|
|
license = "Apache-2.0"
|
|
|
|
edition = "2021"
|
2019-03-12 17:26:07 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
async-trait = { workspace = true }
|
|
|
|
bincode = { workspace = true }
|
|
|
|
enum_dispatch = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
|
|
|
futures-util = { workspace = true }
|
|
|
|
indexmap = { workspace = true }
|
|
|
|
indicatif = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
quinn = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
rayon = { workspace = true }
|
|
|
|
solana-connection-cache = { workspace = true }
|
|
|
|
solana-measure = { workspace = true }
|
|
|
|
solana-metrics = { workspace = true }
|
|
|
|
solana-net-utils = { workspace = true }
|
|
|
|
solana-pubsub-client = { workspace = true }
|
|
|
|
solana-quic-client = { workspace = true }
|
|
|
|
solana-rpc-client = { workspace = true, features = ["default"] }
|
|
|
|
solana-rpc-client-api = { workspace = true }
|
|
|
|
solana-rpc-client-nonce-utils = { workspace = true }
|
|
|
|
solana-sdk = { workspace = true }
|
|
|
|
solana-streamer = { workspace = true }
|
|
|
|
solana-thin-client = { workspace = true }
|
|
|
|
solana-tpu-client = { workspace = true, features = ["default"] }
|
|
|
|
solana-udp-client = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2019-03-12 17:26:07 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
crossbeam-channel = { workspace = true }
|
|
|
|
rand_chacha = { workspace = true }
|
|
|
|
solana-logger = { workspace = true }
|
2020-04-16 18:18:28 -07:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|