36 lines
1.2 KiB
TOML
36 lines
1.2 KiB
TOML
[package]
|
|
name = "solana-rpc-test"
|
|
version = "1.11.0"
|
|
description = "Solana RPC Test"
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
|
repository = "https://github.com/solana-labs/solana"
|
|
license = "Apache-2.0"
|
|
homepage = "https://solana.com/"
|
|
documentation = "https://docs.rs/solana-rpc-test"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
bincode = "1.3.3"
|
|
bs58 = "0.4.0"
|
|
crossbeam-channel = "0.5"
|
|
futures-util = "0.3.21"
|
|
log = "0.4.17"
|
|
reqwest = { version = "0.11.10", default-features = false, features = ["blocking", "rustls-tls", "json"] }
|
|
serde = "1.0.137"
|
|
serde_json = "1.0.81"
|
|
solana-account-decoder = { path = "../account-decoder", version = "=1.11.0" }
|
|
solana-client = { path = "../client", version = "=1.11.0" }
|
|
solana-rpc = { path = "../rpc", version = "=1.11.0" }
|
|
solana-sdk = { path = "../sdk", version = "=1.11.0" }
|
|
solana-streamer = { path = "../streamer", version = "=1.11.0" }
|
|
solana-test-validator = { path = "../test-validator", version = "=1.11.0" }
|
|
solana-transaction-status = { path = "../transaction-status", version = "=1.11.0" }
|
|
tokio = { version = "~1.14.1", features = ["full"] }
|
|
|
|
[dev-dependencies]
|
|
solana-logger = { path = "../logger", version = "=1.11.0" }
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|