Skip to content

Commit

Permalink
geyser: serialize from custom message istead of generated (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
fanatid authored Nov 20, 2024
1 parent a0bfd8a commit 3123525
Show file tree
Hide file tree
Showing 16 changed files with 1,141 additions and 329 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ The minor version will be incremented upon a breaking change and the patch versi
- proto: add mod `plugin` with `FilterNames` cache ([#458](https://github.com/rpcpool/yellowstone-grpc/pull/458))
- proto: move enum Message from geyser crate ([#459](https://github.com/rpcpool/yellowstone-grpc/pull/459))
- proto: move `Filter` from geyser crate ([#466](https://github.com/rpcpool/yellowstone-grpc/pull/466))
- geyser: serialize from custom message istead of generated ([#467](https://github.com/rpcpool/yellowstone-grpc/pull/467))

### Breaking

Expand Down
159 changes: 145 additions & 14 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,17 @@ log = "0.4.17"
maplit = "1.0.2"
prometheus = "0.13.2"
prost = "0.13.1"
prost_011 = { package = "prost", version = "0.11.9" }
protobuf-src = "1.1.0"
scylla = "0.13.0"
serde = "1.0.145"
serde_json = "1.0.86"
solana-account-decoder = "~2.0.10"
solana-logger = "~2.0.10"
solana-sdk = "~2.0.10"
solana-storage-proto = "~2.0.10"
solana-transaction-status = "~2.0.10"
smallvec = "1.13.2"
spl-token-2022 = "4.0.0"
thiserror = "1.0"
tokio = "1.21.2"
Expand Down
2 changes: 1 addition & 1 deletion yellowstone-grpc-geyser/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use {
std::{fs::read_to_string, net::SocketAddr, path::Path, time::Duration},
tokio::sync::Semaphore,
tonic::codec::CompressionEncoding,
yellowstone_grpc_proto::plugin::filter::FilterLimits,
yellowstone_grpc_proto::plugin::filter::limits::FilterLimits,
};

#[derive(Debug, Clone, Deserialize)]
Expand Down
Loading

0 comments on commit 3123525

Please sign in to comment.