2023-06-22 09:54:09 -07:00
|
|
|
[package]
|
|
|
|
name = "solana-lite-rpc-quic-forward-proxy"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "A staked proxy for transaction forwarding to TPU nodes"
|
2024-02-06 08:59:46 -08:00
|
|
|
rust-version = "1.73.0"
|
2023-06-22 09:54:09 -07:00
|
|
|
#default-run = "lite-rpc"
|
|
|
|
repository = "https://github.com/blockworks-foundation/lite-rpc"
|
|
|
|
license = "AGPL"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-02 05:59:47 -07:00
|
|
|
solana-lite-rpc-core = { workspace = true }
|
2024-02-22 07:54:42 -08:00
|
|
|
solana-lite-rpc-util = { workspace = true }
|
2023-06-22 09:54:09 -07:00
|
|
|
solana-sdk = { workspace = true }
|
|
|
|
solana-streamer = { workspace = true }
|
2023-07-20 00:28:55 -07:00
|
|
|
solana-transaction-status = { workspace = true }
|
|
|
|
solana-net-utils = { workspace = true }
|
2023-06-22 09:54:09 -07:00
|
|
|
rustls = { workspace = true, features = ["dangerous_configuration"]}
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
bincode = { workspace = true }
|
|
|
|
bs58 = { workspace = true }
|
|
|
|
base64 = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
bytes = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
clap = { workspace = true }
|
2023-07-27 02:20:03 -07:00
|
|
|
dashmap = { workspace = true }
|
2023-06-26 13:10:06 -07:00
|
|
|
itertools = { workspace = true }
|
2023-07-26 14:33:49 -07:00
|
|
|
tracing = { workspace = true }
|
2023-06-22 09:54:09 -07:00
|
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
native-tls = { workspace = true }
|
|
|
|
prometheus = { workspace = true }
|
|
|
|
lazy_static = { workspace = true }
|
|
|
|
dotenv = { workspace = true }
|
|
|
|
async-channel = { workspace = true }
|
|
|
|
quinn = { workspace = true }
|
|
|
|
async-trait = { workspace = true }
|
2023-07-25 04:54:34 -07:00
|
|
|
futures = { workspace = true }
|
2023-06-22 09:54:09 -07:00
|
|
|
chrono = { workspace = true }
|
|
|
|
tokio = { version = "1.28.2", features = ["full", "fs"]}
|
|
|
|
rcgen = "0.9.3"
|
2023-06-25 12:53:19 -07:00
|
|
|
spl-memo = "3.0.1"
|
2023-06-25 23:05:18 -07:00
|
|
|
|