87 lines
2.4 KiB
TOML
87 lines
2.4 KiB
TOML
[package]
|
|
name = "lite-rpc"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A lite version of solana rpc to send and confirm transactions"
|
|
rust-version = "1.67.1"
|
|
|
|
[workspace]
|
|
members = [
|
|
"bench"
|
|
]
|
|
|
|
[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"
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
serde_json = "1.0.93"
|
|
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.69"
|
|
log = "0.4.17"
|
|
clap = { version = "4.1.6", features = ["derive"] }
|
|
dashmap = "5.4.0"
|
|
const_env = "0.1.2"
|
|
jsonrpsee = { version = "0.16.2", features = ["macros", "full"] }
|
|
tracing-subscriber = "0.3.16"
|
|
tokio-postgres = "0.7.7"
|
|
native-tls = "0.2.11"
|
|
postgres-native-tls = "0.5.0"
|
|
prometheus = "0.13.3"
|
|
lazy_static = "1.4.0"
|
|
dotenv = "0.15.0"
|
|
async-channel = "1.8.0"
|
|
quinn = "0.9.3"
|
|
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 }
|