2023-09-28 07:26:09 -07:00
|
|
|
[package]
|
|
|
|
name = "grpc_banking_transactions_notifications"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-23 11:15:50 -07:00
|
|
|
solana-sdk = "~1.16.17"
|
|
|
|
solana-rpc-client = "~1.16.17"
|
|
|
|
solana-rpc-client-api = "~1.16.17"
|
|
|
|
solana-transaction-status = "~1.16.17"
|
2023-09-28 07:26:09 -07:00
|
|
|
itertools = "0.10.5"
|
|
|
|
serde = { version = "1.0.160", features = ["derive"] }
|
|
|
|
serde_json = "1.0.96"
|
|
|
|
bincode = "1.3.3"
|
|
|
|
bs58 = "0.4.0"
|
|
|
|
base64 = "0.21.0"
|
|
|
|
thiserror = "1.0.40"
|
|
|
|
futures = "0.3.28"
|
|
|
|
bytes = "1.4.0"
|
|
|
|
anyhow = "1.0.70"
|
|
|
|
log = "0.4.17"
|
2023-11-22 10:49:14 -08:00
|
|
|
tracing-subscriber = "0.3.18"
|
2023-09-28 07:26:09 -07:00
|
|
|
clap = { version = "4.2.4", features = ["derive", "env"] }
|
|
|
|
dashmap = "5.4.0"
|
|
|
|
const_env = "0.1.2"
|
|
|
|
chrono = "0.4.24"
|
|
|
|
native-tls = "0.2.11"
|
|
|
|
postgres-native-tls = "0.5.0"
|
|
|
|
prometheus = "0.13.3"
|
|
|
|
lazy_static = "1.4.0"
|
2023-10-02 01:51:38 -07:00
|
|
|
tokio-postgres = { version = "0.7.10", features = ["with-chrono-0_4"] }
|
|
|
|
rustls = { version = "=0.20.8", default-features = false }
|
2023-09-28 07:26:09 -07:00
|
|
|
|
|
|
|
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros", "time"] }
|
2023-10-23 11:15:50 -07:00
|
|
|
yellowstone-grpc-client = {git = "https://github.com/blockworks-foundation/yellowstone-grpc.git", branch = "tag-v1.16-mango"}
|
|
|
|
yellowstone-grpc-proto = {git = "https://github.com/blockworks-foundation/yellowstone-grpc.git", branch = "tag-v1.16-mango"}
|
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
solana-account-decoder = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3-mango" }
|
|
|
|
solana-geyser-plugin-interface = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3-mango" }
|
|
|
|
solana-logger = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3-mango" }
|
|
|
|
solana-program = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3-mango" }
|
|
|
|
solana-sdk = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3-mango" }
|
|
|
|
solana-transaction-status = { git = "https://github.com/rpcpool/solana-public.git", tag = "v1.16.17-geyser-block-v3-mango" }
|