-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[JIT-1699] Add Exponential Backoff, upgrade to 1.16 (#18)
- Loading branch information
Showing
8 changed files
with
1,672 additions
and
1,009 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
[package] | ||
name = "jito-shredstream-proxy" | ||
version = "0.1.4" | ||
version = "0.1.5" | ||
description = "Fast path to receive shreds from Jito, forwarding to local consumers. See https://jito-labs.gitbook.io/mev/searcher-services/shredstream for details." | ||
authors = ["Jito Team <[email protected]>"] | ||
homepage = "https://jito.wtf/" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
arc-swap = "1.6" | ||
backon = "0.4" | ||
clap = { version = "4", features = ["derive", "env"] } | ||
crossbeam-channel = "0.5.8" | ||
env_logger = "0.10.0" | ||
|
@@ -22,12 +23,12 @@ rand_07 = { package = "rand", version = "~0.7" } | |
reqwest = { version = "0.11", features = ["blocking", "json"] } | ||
serde_json = "1" | ||
signal-hook = "0.3" | ||
solana-client = "~1.14" | ||
solana-metrics = "~1.14" | ||
solana-net-utils = "~1.14" | ||
solana-perf = "~1.14" | ||
solana-sdk = "~1.14" | ||
solana-streamer = "~1.14" | ||
solana-client = "~1.16" | ||
solana-metrics = "~1.16" | ||
solana-net-utils = "~1.16" | ||
solana-perf = "~1.16" | ||
solana-sdk = "~1.16" | ||
solana-streamer = "~1.16" | ||
thiserror = "1.0.40" | ||
tokio = "1" | ||
tonic = { version = "0.9.2", features = ["tls", "tls-roots", "tls-webpki-roots"] } | ||
tonic = { version = "0.9", features = ["tls", "tls-roots", "tls-webpki-roots"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[toolchain] | ||
channel = "1.64.0" | ||
channel = "1.72" | ||
components = [ "rustfmt", "rustc-dev", "clippy", "cargo", "cargo-sort" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters