Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 52 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 1 addition & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,6 @@ tikv-jemallocator = "0.7.0"
tokio = "1.48.0"
tokio-stream = "0.1.15"
tokio-util = "0.7.16"
tonic = "0.14.0"
tonic-build = "0.14.0"
tonic-health = "0.14.0"
tonic-prost = "0.14.0"
tonic-prost-build = "0.14.0"
tower = "0.5.0"
tracing = "0.1.40"
tracing-subscriber = "0.3.1"
Expand Down Expand Up @@ -106,6 +101,7 @@ solana-signature = "3.0.0"
solana-signer = "3.0.0"
solana-transaction = "4.0.0"
solana-transaction-error = "3.0.0"
solana-leader-schedule = "4.0.0"

# Yellowstone
yellowstone-grpc-client = "13.1.0"
Expand Down
7 changes: 1 addition & 6 deletions apps/jet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,6 @@ tikv-jemallocator = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
tokio-stream = { workspace = true }
tokio-util = { workspace = true }
tonic = { workspace = true, features = ["tls-native-roots"] }
tonic-health = { workspace = true }
tonic-prost = { workspace = true }
tower = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["ansi", "env-filter", "json"] }
Expand Down Expand Up @@ -90,6 +87,7 @@ solana-signature = { workspace = true, features = ["rand"] }
solana-signer = { workspace = true }
solana-transaction = { workspace = true }
solana-transaction-error = { workspace = true }
solana-leader-schedule = { workspace = true, features = ["agave-unstable-api"] }

# Yellowstone
yellowstone-grpc-client = { workspace = true }
Expand All @@ -101,9 +99,6 @@ yellowstone-shield-store = { workspace = true }
anyhow = { workspace = true }
cargo-lock = { workspace = true }
git-version = { workspace = true }
protobuf-src = { workspace = true }
tonic-build = { workspace = true }
tonic-prost-build = { workspace = true }
vergen = { workspace = true, features = ["build", "rustc"] }

[lints]
Expand Down
5 changes: 0 additions & 5 deletions apps/jet/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ fn main() -> anyhow::Result<()> {
get_pkg_version(&lockfile, "yellowstone-grpc-proto")
);

// TODO: Audit that the environment access only happens in single-threaded code.
unsafe { std::env::set_var("PROTOC", protobuf_src::protoc()) };
tonic_prost_build::configure()
.compile_protos(&["proto/jet.proto", "proto/lewis.proto"], &["proto"])?;

Ok(())
}

Expand Down
142 changes: 0 additions & 142 deletions apps/jet/proto/jet.proto

This file was deleted.

Loading
Loading