geyser-grpc-connector/Cargo.toml

40 lines
1.1 KiB
TOML
Raw Normal View History

2023-12-13 06:57:50 -08:00
[package]
name = "geyser-grpc-connector"
2024-04-16 04:38:18 -07:00
version = "0.10.6+yellowstone.1.13"
2023-12-13 06:57:50 -08:00
edition = "2021"
2023-12-20 01:19:15 -08:00
description = "Multiplexing and Reconnection on Yellowstone gRPC Geyser client streaming"
license = "Apache-2.0"
authors = ["GroovieGermanikus <groovie@mango.markets>"]
2023-12-20 01:22:39 -08:00
repository = "https://github.com/blockworks-foundation/geyser-grpc-connector"
2023-12-20 01:19:15 -08:00
2023-12-13 06:57:50 -08:00
[dependencies]
2024-04-17 05:12:29 -07:00
yellowstone-grpc-client = { git = "https://github.com/blockworks-foundation/yellowstone-grpc.git", branch = "v1.13.0+solana.1.17.31" }
yellowstone-grpc-proto = { git = "https://github.com/blockworks-foundation/yellowstone-grpc.git", branch = "v1.13.0+solana.1.17.31" }
2023-12-13 06:57:50 -08:00
2023-12-20 00:13:10 -08:00
# required for CommitmentConfig
2024-04-17 05:12:29 -07:00
solana-sdk = "1.17.31"
2023-12-13 06:57:50 -08:00
2023-12-19 03:44:49 -08:00
url = "2.5.0"
2023-12-13 06:57:50 -08:00
async-stream = "0.3.5"
tokio = { version = "1.28" , features = ["rt", "rt-multi-thread"] }
2023-12-13 06:57:50 -08:00
futures = "0.3.28"
2023-12-15 01:09:24 -08:00
merge-streams = "0.1.2"
2023-12-13 06:57:50 -08:00
anyhow = "1.0.70"
log = "0.4.17"
tracing = "0.1.37"
itertools = "0.10.5"
2023-12-20 00:09:29 -08:00
derive_more = "0.99.17"
base64 = "0.21.5"
bincode = "1.3.3"
2024-03-22 02:06:19 -07:00
csv = "1.3.0"
2024-04-22 09:48:17 -07:00
tonic = { version="0.10.2", features=["gzip"] }
2024-04-11 05:57:04 -07:00
tonic-health = "0.10.2"
2023-12-20 00:09:29 -08:00
[dev-dependencies]
tracing-subscriber = "0.3.16"
2024-04-17 05:12:29 -07:00
solana-logger = "1.17.31"