-
Notifications
You must be signed in to change notification settings - Fork 60
/
Cargo.toml
102 lines (93 loc) · 3.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[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.3.0"
authors = ["gmgalactus <[email protected]>", "GroovieGermanikus <[email protected]>"]
repository = "https://github.com/blockworks-foundation/lite-rpc"
license = "AGPL"
edition = "2021"
[workspace.dependencies]
solana-lite-rpc-services = { path = "services", version="0.3.0" }
solana-lite-rpc-core = { path = "core", version="0.3.0" }
solana-lite-rpc-util = { path = "util", version="0.3.0" }
solana-lite-rpc-cluster-endpoints = { path = "cluster-endpoints", version="0.3.0" }
solana-lite-rpc-blockstore = { path = "blockstore", version="0.3.0" }
solana-lite-rpc-stakevote = { path = "stake_vote", version="0.3.0" }
solana-lite-rpc-prioritization-fees = { path = "prioritization_fees", version="0.3.0" }
solana-lite-rpc-address-lookup-tables = { path = "address-lookup-tables", version="0.3.0" }
solana-lite-rpc-accounts = { path = "accounts", version = "0.3.0"}
solana-lite-rpc-accounts-on-demand = { path = "accounts-on-demand", version = "0.3.0"}
bench = { path = "bench", version="0.3.0" }
solana-sdk = "~2.0.16"
solana-rpc-client = "~2.0.16"
solana-rpc-client-api = "~2.0.16"
solana-transaction-status = "~2.0.16"
solana-version = "~2.0.16"
solana-client = "~2.0.16"
solana-net-utils = "~2.0.16"
solana-pubsub-client = "~2.0.16"
solana-streamer = "~2.0.16"
solana-account-decoder = "~2.0.16"
solana-ledger = "~2.0.16"
solana-program = "~2.0.16"
solana-accounts-db = "~2.0.16"
solana-address-lookup-table-program = "~2.0.16"
yellowstone-grpc-proto = { git = "https://github.com/rpcpool/yellowstone-grpc.git", tag = "v2.0.0+solana.2.0.16" }
geyser-grpc-connector = { git = "https://github.com/blockworks-foundation/geyser-grpc-connector.git", tag = "v0.11.0+yellowstone.2.0.0+solana.2.0" }
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"
async-trait = "0.1.68"
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"] }
tonic = "0.12"
tonic-health = "0.12"
rcgen = "0.9.3"
[patch.crates-io.curve25519-dalek]
git = "https://github.com/anza-xyz/curve25519-dalek.git"
rev = "b500cdc2a920cd5bff9e2dd974d7b97349d61464"