solana-rpc-testing/Cargo.toml

38 lines
800 B
TOML
Raw Normal View History

2023-05-03 08:28:06 -07:00
[package]
name = "solana-rpc-testing"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
tokio = { version = "1.27.0", features = ["full", "fs"]}
bincode = "1.3.3"
bs58 = "0.4.0"
base64 = "0.21.0"
thiserror = "1.0.40"
futures = "0.3.28"
bytes = "1.4.0"
anyhow = "1.0.70"
log = "0.4.17"
clap = { version = "4.2.4", features = ["derive"] }
dashmap = "5.4.0"
const_env = "0.1.2"
chrono = "0.4.24"
lazy_static = "1.4.0"
rand = "0.8.5"
rand_chacha = "0.3.1"
async-trait = "0.1.68"
solana-sdk = "1.15.2"
solana-program = "1.15.2"
2023-05-10 05:29:16 -07:00
solana-rpc-client = "1.15.2"
2023-05-11 06:02:06 -07:00
derive_more = "0.99.17"
pretty_env_logger = "0.4.0"
tracing-subscriber = "0.3.17"
spl-token = "3.5.0"
2023-05-14 14:37:26 -07:00
solana-client = "1.15.2"
itertools = "0.10.5"
2023-06-13 18:44:06 -07:00
reqwest = "0.11.18"