-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
1,403 additions
and
1,246 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 |
---|---|---|
|
@@ -5,3 +5,47 @@ members = [ | |
"proto", | ||
"server" | ||
] | ||
|
||
# This prevents a Travis CI error when building for Windows. | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "1.17.1" | ||
license = "Apache-2.0" | ||
authors = ["Jito Foundation <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/jito-foundation/geyser-grpc-plugin" | ||
homepage = "https://jito.network/" | ||
|
||
[workspace.dependencies] | ||
bincode = "1.3.3" | ||
bs58 = "0.5.0" | ||
clap = { version = "4.4.6", features = ["derive", "env"] } | ||
crossbeam-channel = "0.5.8" | ||
enum-iterator = "1.4.1" | ||
futures-util = "0.3.28" | ||
geyser-grpc-plugin-client = { path = "client" } | ||
jito-geyser-protos = { path = "proto" } | ||
log = "0.4.17" | ||
lru = "0.12.0" | ||
once_cell = "1.17.1" | ||
prost = "0.12.1" | ||
prost-types = "0.12.1" | ||
rand = "0.8" | ||
serde = "1.0.160" | ||
serde_derive = "1.0.160" | ||
serde_json = "1.0.96" | ||
solana-account-decoder = "1.17.1" | ||
solana-geyser-plugin-interface = "1.17.1" | ||
solana-logger = "1.17.1" | ||
solana-metrics = "1.17.1" | ||
solana-program = "1.17.1" | ||
solana-sdk = "1.17.1" | ||
solana-transaction-status = "1.17.1" | ||
solana-vote-program = "1.17.1" | ||
thiserror = "1.0.40" | ||
tokio = { version = "1.29.1", features = ["rt-multi-thread"] } | ||
tokio-stream = "0.1" | ||
tonic = { version = "0.10.2", features = ["tls"] } | ||
tonic-build = "0.10.2" | ||
uuid = { version = "1.3.1", features = ["v4", "fast-rng"] } |
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,20 +1,17 @@ | ||
[package] | ||
name = "jito-geyser-cli" | ||
version = "0.0.1" | ||
authors = ["Jito Labs"] | ||
description = "Geyser testing" | ||
edition = "2021" | ||
publish = false | ||
version = { workspace = true } | ||
license = { workspace = true } | ||
authors = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
clap = { version = "=4.0.32", features = ["derive", "env"] } # keep old clap. newer version needs rustc 1.64+ | ||
clap_lex = "=0.3.0" # manual dep override for clap. | ||
futures-util = "0.3.28" | ||
geyser-grpc-plugin-client = { path = "../client" } | ||
jito-geyser-protos = { path = "../proto" } | ||
prost-types = "0.11.9" | ||
solana-sdk = "~1.14" | ||
tokio = { version = "~1.14.1", features = ["rt-multi-thread"] } | ||
toml_datetime = "=0.6.0" # manual dep override for clap. | ||
tonic = { version = "0.9.2", features = ["tls", "tls-roots", "tls-webpki-roots"] } | ||
uuid = { version = "1.3.1", features = ["v4"] } | ||
clap = { workspace = true } | ||
futures-util = { workspace = true } | ||
geyser-grpc-plugin-client = { workspace = true } | ||
jito-geyser-protos = { workspace = true } | ||
prost-types = { workspace = true } | ||
solana-sdk = { workspace = true } | ||
tokio = { workspace = true } | ||
tonic = { workspace = true } | ||
uuid = { workspace = true } |
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,29 +1,23 @@ | ||
[package] | ||
name = "geyser-grpc-plugin-client" | ||
version = "0.1.0" | ||
authors = ["Jito Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
version = { workspace = true } | ||
license = { workspace = true } | ||
authors = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
jito-geyser-protos = { path = "../proto" } | ||
jito-solana-sdk = { git = "https://github.com/jito-foundation/jito-solana.git", tag = "v1.14.17-jito", package = "solana-sdk", optional = true } | ||
log = "0.4" | ||
lru = "0.8" # keep old version due to MSRV of 1.60 | ||
prost = "0.11.9" | ||
prost-types = "0.11.9" | ||
rand = "0.8" | ||
serde = "1.0.160" | ||
serde_json = "1.0.96" | ||
|
||
solana-sdk = "~1.14" | ||
|
||
thiserror = "1.0.40" | ||
tokio = { version = "1", features = ["rt-multi-thread"] } | ||
tonic = { version = "0.9.2", features = ["tls"] } | ||
jito-geyser-protos = { workspace = true } | ||
log = { workspace = true } | ||
lru = { workspace = true } | ||
prost = { workspace = true } | ||
prost-types = { workspace = true } | ||
rand = { workspace = true } | ||
serde = { workspace = true } | ||
serde_json = { workspace = true } | ||
solana-sdk = { workspace = true } | ||
thiserror = { workspace = true } | ||
tokio = { workspace = true } | ||
tonic = { workspace = true } | ||
|
||
[build-dependencies] | ||
tonic-build = "0.9.2" | ||
|
||
[features] | ||
jito-solana = ["jito-solana-sdk"] | ||
tonic-build = { workspace = true } |
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,26 +1,24 @@ | ||
[package] | ||
name = "jito-geyser-protos" | ||
version = "0.0.2" | ||
authors = ["Jito Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
version = { workspace = true } | ||
license = { workspace = true } | ||
authors = { workspace = true } | ||
edition = { workspace = true } | ||
description = "Jito's Solana geyser protobufs and helper libraries" | ||
|
||
[dependencies] | ||
bincode = "1.3.3" | ||
jito-solana-account-decoder = { git = "https://github.com/jito-foundation/jito-solana.git", tag = "v1.14.17-jito", package = "solana-account-decoder", optional = true } | ||
jito-solana-sdk = { git = "https://github.com/jito-foundation/jito-solana.git", tag = "v1.14.17-jito", package = "solana-sdk", optional = true } | ||
jito-solana-transaction-status = { git = "https://github.com/jito-foundation/jito-solana.git", tag = "v1.14.17-jito", package = "solana-transaction-status", optional = true } | ||
prost = "0.11.9" | ||
prost-types = "0.11.9" | ||
serde = "1.0.160" | ||
solana-account-decoder = "~1.14" | ||
solana-sdk = "~1.14" | ||
solana-transaction-status = "~1.14" | ||
tonic = "0.9.2" | ||
bincode = { workspace = true } | ||
prost = { workspace = true } | ||
prost-types = { workspace = true } | ||
serde = { workspace = true } | ||
solana-account-decoder = { workspace = true } | ||
solana-sdk = { workspace = true } | ||
solana-transaction-status = { workspace = true } | ||
tonic = { workspace = true } | ||
|
||
[build-dependencies] | ||
tonic-build = "0.9.2" | ||
tonic-build = { workspace = true } | ||
|
||
[features] | ||
jito-solana = ["jito-solana-account-decoder", "jito-solana-sdk", "jito-solana-transaction-status"] | ||
[dev-dependencies] | ||
bs58 = { workspace = true } | ||
enum-iterator = { workspace = true } |
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
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
Oops, something went wrong.