97 lines
3.0 KiB
TOML
97 lines
3.0 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
|
|
members = [
|
|
"core",
|
|
"util",
|
|
"services",
|
|
"lite-rpc",
|
|
"quic-forward-proxy",
|
|
"quic-forward-proxy-integration-test",
|
|
"cluster-endpoints",
|
|
"blockstore",
|
|
"prioritization_fees",
|
|
"bench",
|
|
"benchrunner-service",
|
|
"address-lookup-tables",
|
|
"accounts",
|
|
"accounts-on-demand",
|
|
#examples
|
|
"examples/custom-tpu-send-transactions"
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.2.4"
|
|
authors = ["gmgalactus <gmgalactus@mango.markets>", "GroovieGermanikus <groovie@mango.markets>"]
|
|
repository = "https://github.com/blockworks-foundation/lite-rpc"
|
|
license = "AGPL"
|
|
edition = "2021"
|
|
|
|
[workspace.dependencies]
|
|
solana-sdk = "~1.18.15"
|
|
solana-rpc-client = "~1.18.15"
|
|
solana-rpc-client-api = "~1.18.15"
|
|
solana-transaction-status = "~1.18.15"
|
|
solana-version = "~1.18.15"
|
|
solana-client = "~1.18.15"
|
|
solana-net-utils = "~1.18.15"
|
|
solana-pubsub-client = "~1.18.15"
|
|
solana-streamer = "~1.18.15"
|
|
solana-account-decoder = "~1.18.15"
|
|
solana-ledger = "~1.18.15"
|
|
solana-program = "~1.18.15"
|
|
solana-address-lookup-table-program = "~1.18.15"
|
|
itertools = "0.10.5"
|
|
rangetools = "0.1.4"
|
|
serde = { version = "1.0.160", features = ["derive"] }
|
|
serde_json = "1.0.96"
|
|
bincode = "1.3.3"
|
|
bs58 = "0.4.0"
|
|
base64 = "0.21.0"
|
|
borsh = "0.10.3"
|
|
thiserror = "1.0.40"
|
|
futures = "0.3.28"
|
|
futures-util = "0.3.28"
|
|
bytes = "1.4.0"
|
|
anyhow = "1.0.70"
|
|
log = "0.4.17"
|
|
clap = { version = "4.2.4", features = ["derive", "env"] }
|
|
dashmap = "5.4.0"
|
|
const_env = "0.1.2"
|
|
jsonrpsee = { version = "0.20.0", features = ["macros", "full"] }
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = "0.3.16"
|
|
chrono = "0.4.24"
|
|
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"
|
|
merge-streams = "0.1.2"
|
|
jemallocator = "0.5"
|
|
|
|
quinn = "0.10.2"
|
|
quinn-proto = "0.10.5"
|
|
rustls = { version = "0.21.7", default-features = false, features = ["quic"] }
|
|
|
|
solana-lite-rpc-services = {path = "services", version="0.2.4"}
|
|
solana-lite-rpc-core = {path = "core", version="0.2.4"}
|
|
solana-lite-rpc-util = {path = "util", version="0.2.4"}
|
|
solana-lite-rpc-cluster-endpoints = {path = "cluster-endpoints", version="0.2.4"}
|
|
solana-lite-rpc-blockstore = {path = "blockstore", version="0.2.4"}
|
|
solana-lite-rpc-stakevote = {path = "stake_vote", version="0.2.4"}
|
|
solana-lite-rpc-prioritization-fees = {path = "prioritization_fees", version="0.2.4"}
|
|
solana-lite-rpc-address-lookup-tables = {path = "address-lookup-tables", version="0.2.4"}
|
|
solana-lite-rpc-accounts = {path = "accounts", version = "0.2.4"}
|
|
solana-lite-rpc-accounts-on-demand = {path = "accounts-on-demand", version = "0.2.4"}
|
|
bench = { path = "bench", version="0.2.4" }
|
|
|
|
yellowstone-grpc-proto = { git = "https://github.com/rpcpool/yellowstone-grpc.git", tag = "v1.15.0+solana.1.18" }
|
|
#geyser-grpc-connector = { path = "../geyser-grpc-connector" }
|
|
geyser-grpc-connector = { tag = "v0.10.6+yellowstone.1.15+solana.1.18", git = "https://github.com/blockworks-foundation/geyser-grpc-connector.git" }
|
|
|
|
|
|
async-trait = "0.1.68"
|
|
tonic-health = "0.10"
|