52 lines
1.8 KiB
TOML
52 lines
1.8 KiB
TOML
[package]
|
|
name = "solana-client"
|
|
version = "1.10.0"
|
|
description = "Solana Client"
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
|
repository = "https://github.com/solana-labs/solana"
|
|
homepage = "https://solana.com/"
|
|
documentation = "https://docs.rs/solana-client"
|
|
license = "Apache-2.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.52"
|
|
base64 = "0.13.0"
|
|
bincode = "1.3.3"
|
|
bs58 = "0.4.0"
|
|
clap = "2.33.0"
|
|
crossbeam-channel = "0.5"
|
|
futures-util = "0.3.19"
|
|
indicatif = "0.16.2"
|
|
jsonrpc-core = "18.0.0"
|
|
log = "0.4.14"
|
|
rayon = "1.5.1"
|
|
reqwest = { version = "0.11.6", default-features = false, features = ["blocking", "rustls-tls", "json"] }
|
|
semver = "1.0.4"
|
|
serde = "1.0.136"
|
|
serde_derive = "1.0.103"
|
|
serde_json = "1.0.78"
|
|
solana-account-decoder = { path = "../account-decoder", version = "=1.10.0" }
|
|
solana-clap-utils = { path = "../clap-utils", version = "=1.10.0" }
|
|
solana-faucet = { path = "../faucet", version = "=1.10.0" }
|
|
solana-net-utils = { path = "../net-utils", version = "=1.10.0" }
|
|
solana-measure = { path = "../measure", version = "=1.10.0" }
|
|
solana-sdk = { path = "../sdk", version = "=1.10.0" }
|
|
solana-transaction-status = { path = "../transaction-status", version = "=1.10.0" }
|
|
solana-version = { path = "../version", version = "=1.10.0" }
|
|
solana-vote-program = { path = "../programs/vote", version = "=1.10.0" }
|
|
thiserror = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-stream = "0.1.8"
|
|
tokio-tungstenite = { version = "0.16.0", features = ["rustls-tls-webpki-roots"] }
|
|
tungstenite = { version = "0.16.0", features = ["rustls-tls-webpki-roots"] }
|
|
url = "2.2.2"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5.0"
|
|
jsonrpc-http-server = "18.0.0"
|
|
solana-logger = { path = "../logger", version = "=1.10.0" }
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|