geyser-grpc-connector/Cargo.toml

38 lines
1.0 KiB
TOML
Raw Permalink Normal View History

2023-12-13 06:57:50 -08:00
[package]
name = "geyser-grpc-connector"
2024-01-31 09:53:07 -08:00
version = "0.10.1+yellowstone.1.12"
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-01-22 09:26:45 -08:00
yellowstone-grpc-client = { version = "1.13.0+solana.1.17.15", git = "https://github.com/rpcpool/yellowstone-grpc.git", tag = "v1.12.0+solana.1.17.15" }
yellowstone-grpc-proto = { version = "1.12.0+solana.1.17.15", git = "https://github.com/rpcpool/yellowstone-grpc.git", tag = "v1.12.0+solana.1.17.15" }
2023-12-13 06:57:50 -08:00
2023-12-20 00:13:10 -08:00
# required for CommitmentConfig
2024-01-22 09:26:45 -08:00
solana-sdk = "~1.17.15"
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"
2023-12-14 02:37:50 -08:00
tokio = { version = "1.28" , features = ["rt"] }
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"
2023-12-20 00:09:29 -08:00
[dev-dependencies]
tracing-subscriber = "0.3.16"
2024-01-19 02:34:45 -08:00
solana-logger = "1"