-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
50 lines (41 loc) · 1.6 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
[package]
name = "geyser-grpc-connector"
version = "0.11.0+yellowstone.2.0.0"
edition = "2021"
description = "Multiplexing and Reconnection on Yellowstone gRPC Geyser client streaming"
license = "Apache-2.0"
authors = ["GroovieGermanikus <groovie@mango.markets>"]
repository = "https://github.com/blockworks-foundation/geyser-grpc-connector"
[dependencies]
# note: as timewriting there are versions 3.0.0 and 4.0.0; we will come back to that later
yellowstone-grpc-client = { version = "3.0.0", git = "https://github.com/rpcpool/yellowstone-grpc.git", tag = "v3.0.0+solana.2.0.16" }
yellowstone-grpc-proto = { version = "3.0.0", git = "https://github.com/rpcpool/yellowstone-grpc.git", tag = "v3.0.0+solana.2.0.16" }
# required for CommitmentConfig
solana-sdk = "~2.0.16"
url = "2.5.0"
async-stream = "0.3.5"
tokio = { version = "1.28" , features = ["rt-multi-thread"] }
tokio-metrics = { version = "0.4.0", default-features = false }
futures = "0.3.28"
merge-streams = "0.1.2"
anyhow = "1.0.70"
log = "0.4.17"
tracing = "0.1.37"
itertools = "0.10.5"
tonic = "0.12"
tonic-health = "0.12"
[dev-dependencies]
tracing-subscriber = "0.3.16"
solana-logger = "2"
solana-account-decoder = "~2.0.16"
base64 = "0.21.5"
bincode = "1.3.3"
csv = "1.3.0"
lz4_flex = "0.11.3"
dashmap = "6.1.0"
regex = "1.10.4"
clap = { version = "4.2", features = ["derive"] }
# workaround to avoid solana dependency issue https://github.com/solana-labs/solana/blob/27eff8408b7223bb3c4ab70523f8a8dca3ca6645/Cargo.toml#L514
[patch.crates-io.curve25519-dalek]
git = "https://github.com/anza-xyz/curve25519-dalek.git"
rev = "b500cdc2a920cd5bff9e2dd974d7b97349d61464"