From d7e8a878416654140656f0a6c4c6992050df78b8 Mon Sep 17 00:00:00 2001 From: Steven Luscher Date: Tue, 10 Dec 2024 03:13:13 -0800 Subject: [PATCH] Enable `std` for log in Geyser interface docblock (#3346) --- geyser-plugin-interface/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geyser-plugin-interface/Cargo.toml b/geyser-plugin-interface/Cargo.toml index 56f42fd4612cec..dabfad105698b7 100644 --- a/geyser-plugin-interface/Cargo.toml +++ b/geyser-plugin-interface/Cargo.toml @@ -10,7 +10,7 @@ license = { workspace = true } edition = { workspace = true } [dependencies] -log = { workspace = true } +log = { workspace = true, features = ["std"] } solana-sdk = { workspace = true } solana-transaction-status = { workspace = true } thiserror = { workspace = true }