2022-11-12 05:32:01 -08:00
|
|
|
[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"
|
2023-04-03 10:01:42 -07:00
|
|
|
rust-version = "1.67.1"
|
2022-11-12 05:32:01 -08:00
|
|
|
|
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
|
|
|
]
|
|
|
|
|
2023-04-04 00:17:32 -07:00
|
|
|
[workspace.dependencies]
|
|
|
|
solana-sdk = "1.15.2"
|
|
|
|
solana-rpc-client = "1.15.2"
|
|
|
|
solana-rpc-client-api = "1.15.2"
|
|
|
|
solana-transaction-status = "1.15.2"
|
|
|
|
solana-version = "1.15.2"
|
|
|
|
solana-client = "1.15.2"
|
|
|
|
solana-net-utils = "1.15.2"
|
|
|
|
solana-pubsub-client = "1.15.2"
|
|
|
|
solana-streamer = "1.15.2"
|
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-04-04 00:17:32 -07:00
|
|
|
tokio = { version = "1.27.0", features = ["full", "fs"]}
|
2022-11-12 05:32:01 -08:00
|
|
|
bincode = "1.3.3"
|
|
|
|
bs58 = "0.4.0"
|
2023-01-10 06:56:41 -08:00
|
|
|
base64 = "0.21.0"
|
2023-04-04 00:17:32 -07:00
|
|
|
thiserror = "1.0.40"
|
|
|
|
futures = "0.3.28"
|
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"
|
2023-01-02 05:38:59 -08:00
|
|
|
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"
|
2023-04-03 02:13:01 -07:00
|
|
|
quinn = "0.9.3"
|
2023-04-04 00:17:32 -07:00
|
|
|
rustls = { version = "0.20.6", default-features = false }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
bench = { path = "./bench" }
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
solana-sdk = { workspace = true }
|
|
|
|
solana-rpc-client = { workspace = true }
|
|
|
|
solana-rpc-client-api = { workspace = true }
|
|
|
|
solana-transaction-status = { workspace = true }
|
|
|
|
solana-version = { workspace = true }
|
|
|
|
solana-client = { workspace = true }
|
|
|
|
solana-net-utils = { workspace = true }
|
|
|
|
solana-pubsub-client = { workspace = true }
|
|
|
|
solana-streamer = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
bincode = { workspace = true }
|
|
|
|
bs58 = { workspace = true }
|
|
|
|
base64 = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
|
|
|
bytes = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
clap = { workspace = true }
|
|
|
|
dashmap = { workspace = true }
|
|
|
|
const_env = { workspace = true }
|
|
|
|
jsonrpsee = { workspace = true }
|
|
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
tokio-postgres = { workspace = true }
|
|
|
|
native-tls = { workspace = true }
|
|
|
|
postgres-native-tls = { workspace = true }
|
|
|
|
prometheus = { workspace = true }
|
|
|
|
lazy_static = { workspace = true }
|
|
|
|
dotenv = { workspace = true }
|
|
|
|
async-channel = { workspace = true }
|
|
|
|
quinn = { workspace = true }
|
|
|
|
rustls = { workspace = true }
|