2022-12-10 09:31:37 -08:00
|
|
|
[workspace]
|
2024-01-04 05:05:11 -08:00
|
|
|
resolver = "2"
|
|
|
|
|
2022-12-10 09:31:37 -08:00
|
|
|
members = [
|
2023-06-07 11:00:59 -07:00
|
|
|
"core",
|
2024-02-22 07:54:42 -08:00
|
|
|
"util",
|
2023-06-07 06:49:46 -07:00
|
|
|
"services",
|
2023-06-04 12:37:35 -07:00
|
|
|
"lite-rpc",
|
2023-06-22 09:54:09 -07:00
|
|
|
"quic-forward-proxy",
|
2023-07-20 05:08:38 -07:00
|
|
|
"quic-forward-proxy-integration-test",
|
2023-08-31 03:34:13 -07:00
|
|
|
"cluster-endpoints",
|
2024-02-05 11:20:15 -08:00
|
|
|
"blockstore",
|
2024-02-01 09:49:51 -08:00
|
|
|
"prioritization_fees",
|
2024-02-06 08:59:46 -08:00
|
|
|
"bench",
|
2024-03-26 05:41:46 -07:00
|
|
|
"benchrunner-service",
|
2024-02-28 06:40:11 -08:00
|
|
|
"address-lookup-tables",
|
2024-02-26 11:43:02 -08:00
|
|
|
"accounts",
|
2024-02-28 06:40:11 -08:00
|
|
|
"accounts-on-demand",
|
2024-02-26 11:43:02 -08:00
|
|
|
#examples
|
2024-02-28 06:40:11 -08:00
|
|
|
"examples/custom-tpu-send-transactions"
|
2022-12-10 09:31:37 -08:00
|
|
|
]
|
|
|
|
|
2023-06-04 12:37:35 -07:00
|
|
|
[workspace.package]
|
2024-01-29 04:11:54 -08:00
|
|
|
version = "0.2.4"
|
2024-06-13 04:45:52 -07:00
|
|
|
authors = ["gmgalactus <gmgalactus@mango.markets>", "GroovieGermanikus <groovie@mango.markets>"]
|
2023-06-04 12:37:35 -07:00
|
|
|
repository = "https://github.com/blockworks-foundation/lite-rpc"
|
|
|
|
license = "AGPL"
|
|
|
|
edition = "2021"
|
|
|
|
|
2023-04-04 00:17:32 -07:00
|
|
|
[workspace.dependencies]
|
2024-06-13 04:45:52 -07:00
|
|
|
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"
|
2023-06-26 13:10:06 -07:00
|
|
|
itertools = "0.10.5"
|
2024-01-22 06:22:11 -08:00
|
|
|
rangetools = "0.1.4"
|
2023-04-19 14:08:55 -07:00
|
|
|
serde = { version = "1.0.160", features = ["derive"] }
|
|
|
|
serde_json = "1.0.96"
|
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-10-10 06:22:20 -07:00
|
|
|
borsh = "0.10.3"
|
2023-04-04 00:17:32 -07:00
|
|
|
thiserror = "1.0.40"
|
|
|
|
futures = "0.3.28"
|
2024-01-22 06:22:11 -08:00
|
|
|
futures-util = "0.3.28"
|
2023-01-31 02:02:48 -08:00
|
|
|
bytes = "1.4.0"
|
2023-04-19 14:08:55 -07:00
|
|
|
anyhow = "1.0.70"
|
2022-12-16 18:35:49 -08:00
|
|
|
log = "0.4.17"
|
2023-09-08 06:13:20 -07:00
|
|
|
clap = { version = "4.2.4", features = ["derive", "env"] }
|
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"
|
2024-02-21 05:55:44 -08:00
|
|
|
jsonrpsee = { version = "0.20.0", features = ["macros", "full"] }
|
2023-07-17 01:40:25 -07:00
|
|
|
tracing = "0.1.37"
|
2023-01-11 22:27:38 -08:00
|
|
|
tracing-subscriber = "0.3.16"
|
2023-04-06 08:28:10 -07:00
|
|
|
chrono = "0.4.24"
|
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"
|
2024-03-01 05:45:28 -08:00
|
|
|
merge-streams = "0.1.2"
|
2024-03-22 04:30:14 -07:00
|
|
|
jemallocator = "0.5"
|
2024-01-15 09:43:48 -08:00
|
|
|
|
|
|
|
quinn = "0.10.2"
|
|
|
|
quinn-proto = "0.10.5"
|
|
|
|
rustls = { version = "0.21.7", default-features = false, features = ["quic"] }
|
|
|
|
|
2024-01-29 04:11:54 -08:00
|
|
|
solana-lite-rpc-services = {path = "services", version="0.2.4"}
|
|
|
|
solana-lite-rpc-core = {path = "core", version="0.2.4"}
|
2024-02-22 07:54:42 -08:00
|
|
|
solana-lite-rpc-util = {path = "util", version="0.2.4"}
|
2024-01-29 04:11:54 -08:00
|
|
|
solana-lite-rpc-cluster-endpoints = {path = "cluster-endpoints", version="0.2.4"}
|
2024-02-05 11:20:15 -08:00
|
|
|
solana-lite-rpc-blockstore = {path = "blockstore", version="0.2.4"}
|
2024-01-29 04:11:54 -08:00
|
|
|
solana-lite-rpc-stakevote = {path = "stake_vote", version="0.2.4"}
|
2024-02-01 09:49:51 -08:00
|
|
|
solana-lite-rpc-prioritization-fees = {path = "prioritization_fees", version="0.2.4"}
|
2024-02-28 06:40:11 -08:00
|
|
|
solana-lite-rpc-address-lookup-tables = {path = "address-lookup-tables", version="0.2.4"}
|
2024-02-14 10:20:25 -08:00
|
|
|
solana-lite-rpc-accounts = {path = "accounts", version = "0.2.4"}
|
2024-02-28 06:40:11 -08:00
|
|
|
solana-lite-rpc-accounts-on-demand = {path = "accounts-on-demand", version = "0.2.4"}
|
2024-03-26 05:41:46 -07:00
|
|
|
bench = { path = "bench", version="0.2.4" }
|
2023-08-31 03:34:13 -07:00
|
|
|
|
2024-06-13 04:45:52 -07:00
|
|
|
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" }
|
2024-04-17 06:11:51 -07:00
|
|
|
|
|
|
|
|
2023-07-20 04:45:54 -07:00
|
|
|
async-trait = "0.1.68"
|
2024-03-25 09:44:57 -07:00
|
|
|
tonic-health = "0.10"
|