32 lines
868 B
TOML
32 lines
868 B
TOML
[package]
|
|
name = "solana-client"
|
|
version = "1.1.0"
|
|
description = "Solana Client"
|
|
authors = ["Solana Maintainers <maintainers@solana.com>"]
|
|
repository = "https://github.com/solana-labs/solana"
|
|
homepage = "https://solana.com/"
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bincode = "1.2.1"
|
|
bs58 = "0.3.0"
|
|
jsonrpc-core = "14.0.5"
|
|
log = "0.4.8"
|
|
rayon = "1.2.0"
|
|
reqwest = { version = "0.10.1", default-features = false, features = ["blocking", "rustls-tls", "json"] }
|
|
serde = "1.0.104"
|
|
serde_derive = "1.0.103"
|
|
serde_json = "1.0.46"
|
|
solana-net-utils = { path = "../net-utils", version = "1.1.0" }
|
|
solana-sdk = { path = "../sdk", version = "1.1.0" }
|
|
thiserror = "1.0"
|
|
tungstenite = "0.10.1"
|
|
url = "2.1.1"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.3.0"
|
|
jsonrpc-core = "14.0.5"
|
|
jsonrpc-http-server = "14.0.6"
|
|
solana-logger = { path = "../logger", version = "1.1.0" }
|