Skip to content

Commit

Permalink
geyser: add optional libname to config
Browse files Browse the repository at this point in the history
  • Loading branch information
fanatid committed Oct 6, 2023
1 parent a090e97 commit 8b848ef
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
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

0 comments on commit 8b848ef

Please sign in to comment.