lite-rpc/Cargo.toml

42 lines
1.0 KiB
TOML
Raw Normal View History

[package]
name = "lite-rpc"
version = "0.1.0"
edition = "2021"
2022-12-16 18:35:49 -08:00
description = "A lite version of solana rpc to send and confirm transactions"
2022-12-10 09:31:37 -08:00
[workspace]
members = [
"lite-client",
2022-12-16 18:35:49 -08:00
"bench-utils"
2022-12-10 09:31:37 -08:00
]
[[bench]]
name="tps"
harness=false
[dev-dependencies]
2022-12-16 18:35:49 -08:00
lite-client = { path = "./lite-client" }
bench-utils = { path = "./bench-utils" }
2022-12-10 09:31:37 -08:00
csv = "1.1.6"
[dependencies]
2022-11-30 07:56:41 -08:00
solana-client = { git = "https://github.com/solana-labs/solana.git" }
solana-sdk = { git = "https://github.com/solana-labs/solana.git" }
solana-version = { git = "https://github.com/solana-labs/solana.git" }
2022-12-16 18:35:49 -08:00
solana-transaction-status = { git = "https://github.com/solana-labs/solana.git" }
actix-web = "4.2.1"
serde = { version = "1.0.150", features = ["derive"] }
serde_json = "1.0.89"
tokio = { version = "1.23.0", features = ["full"]}
bincode = "1.3.3"
bs58 = "0.4.0"
2022-12-16 18:35:49 -08:00
base64 = "0.20.0"
2022-12-10 09:31:37 -08:00
thiserror = "1.0.37"
2022-12-16 18:35:49 -08:00
futures = "0.3.25"
bytes = "1.3.0"
reqwest = "0.11.13"
anyhow = "1.0.66"
log = "0.4.17"
simplelog = "0.12.0"
clap = { version = "4.0.29", features = ["derive"] }