Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

geyser: add optional libname to config #194

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ The minor version will be incremented upon a breaking change and the patch versi

### Breaking

## 2023-10-06

- yellowstone-grpc-geyser-1.9.1+solana.1.16.15

### Features

- geyser: add optional `libname` to config ([#194](https://github.com/rpcpool/yellowstone-grpc/pull/194)).

## 2023-10-05

- yellowstone-grpc-client-1.11.0+solana.1.16.15
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = [
"examples/rust", # 1.10.0+solana.1.16.15
"yellowstone-grpc-client", # 1.11.0+solana.1.16.15
"yellowstone-grpc-geyser", # 1.9.0+solana.1.16.15
"yellowstone-grpc-geyser", # 1.9.1+solana.1.16.15
"yellowstone-grpc-kafka", # 1.0.0-rc.1+solana.1.16.15
"yellowstone-grpc-proto", # 1.10.0+solana.1.16.15
]
Expand Down
2 changes: 1 addition & 1 deletion yellowstone-grpc-geyser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yellowstone-grpc-geyser"
version = "1.9.0+solana.1.16.15"
version = "1.9.1+solana.1.16.15"
authors = ["Triton One"]
edition = "2021"
description = "Yellowstone gRPC Geyser Plugin"
Expand Down
1 change: 1 addition & 0 deletions yellowstone-grpc-geyser/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ use {
#[serde(deny_unknown_fields)]
pub struct Config {
pub libpath: String,
pub libname: Option<String>,
#[serde(default)]
pub log: ConfigLog,
pub grpc: ConfigGrpc,
Expand Down