lite-rpc/Cargo.toml

48 lines
1.7 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 = [
2023-01-12 00:55:30 -08:00
"bench"
2022-12-10 09:31:37 -08:00
]
[dev-dependencies]
2023-01-12 00:55:30 -08:00
bench = { path = "./bench" }
[dependencies]
2023-02-02 02:50:06 -08:00
solana-sdk = { git = "https://github.com/blockworks-foundation/solana", branch="lite_rpc" }
solana-rpc-client = { git = "https://github.com/blockworks-foundation/solana", branch="lite_rpc" }
solana-rpc-client-api= { git = "https://github.com/blockworks-foundation/solana", branch="lite_rpc" }
solana-tpu-client= { git = "https://github.com/blockworks-foundation/solana", branch="lite_rpc" }
solana-quic-client= { git = "https://github.com/blockworks-foundation/solana", branch="lite_rpc" }
solana-pubsub-client= { git = "https://github.com/blockworks-foundation/solana", branch="lite_rpc" }
solana-transaction-status = { git = "https://github.com/blockworks-foundation/solana", branch="lite_rpc" }
solana-version= { git = "https://github.com/blockworks-foundation/solana", branch="lite_rpc" }
solana-client= { git = "https://github.com/blockworks-foundation/solana", branch="lite_rpc" }
2023-01-02 07:29:59 -08:00
serde = { version = "1.0.152", features = ["derive"] }
2023-02-22 05:58:14 -08:00
serde_json = "1.0.93"
2023-03-06 01:11:36 -08:00
tokio = { version = "1.25.0", features = ["full"]}
bincode = "1.3.3"
bs58 = "0.4.0"
2023-01-10 06:56:41 -08:00
base64 = "0.21.0"
2023-01-02 07:29:59 -08:00
thiserror = "1.0.38"
2023-01-31 01:25:37 -08:00
futures = "0.3.26"
2023-01-31 02:02:48 -08:00
bytes = "1.4.0"
2023-02-05 02:31:55 -08:00
anyhow = "1.0.69"
2022-12-16 18:35:49 -08:00
log = "0.4.17"
2023-02-22 05:58:14 -08:00
clap = { version = "4.1.6", features = ["derive"] }
2022-12-27 02:11:06 -08:00
dashmap = "5.4.0"
const_env = "0.1.2"
2023-01-04 02:58:25 -08:00
jsonrpsee = { version = "0.16.2", features = ["macros", "full"] }
2023-01-11 22:27:38 -08:00
tracing-subscriber = "0.3.16"
2023-01-17 08:56:17 -08:00
tokio-postgres = "0.7.7"
2023-01-23 07:48:12 -08:00
native-tls = "0.2.11"
postgres-native-tls = "0.5.0"
2023-02-04 03:45:20 -08:00
prometheus = "0.13.3"
lazy_static = "1.4.0"
2023-02-22 05:58:14 -08:00
dotenv = "0.15.0"
async-channel = "1.8.0"