From 44f376e69175766e765579f90ae3aed2f84fa619 Mon Sep 17 00:00:00 2001 From: godmodegalactus Date: Thu, 21 Sep 2023 10:26:28 +0200 Subject: [PATCH 1/2] adding fs in tokio features to support fs --- yellowstone-grpc-geyser/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yellowstone-grpc-geyser/Cargo.toml b/yellowstone-grpc-geyser/Cargo.toml index 1069c784..41ec8ae6 100644 --- a/yellowstone-grpc-geyser/Cargo.toml +++ b/yellowstone-grpc-geyser/Cargo.toml @@ -30,7 +30,7 @@ solana-logger = "=1.16.1" solana-sdk = "=1.16.1" solana-transaction-status = "=1.16.1" spl-token-2022 = "0.7.0" -tokio = { version = "1.21.2", features = ["rt-multi-thread", "macros", "time"] } +tokio = { version = "1.21.2", features = ["rt-multi-thread", "macros", "time", "fs"] } tokio-stream = "0.1.11" tonic = { version = "0.9.2", features = ["gzip", "tls", "tls-roots"] } tonic-health = "0.9.2" From 3b735b37ea4cccd2a45dcfb37d1d1183da9ad30b Mon Sep 17 00:00:00 2001 From: Kirill Fomichev Date: Thu, 21 Sep 2023 12:54:21 +0400 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbadee16..e4b50dac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ The minor version will be incremented upon a breaking change and the patch versi ### Fixes +- geyser: add `fs` feature to `tokio` dependencies in the plugin ([#184](https://github.com/rpcpool/yellowstone-grpc/pull/184)). + ### Breaking ## 2023-08-28