From 3b213aa24cdd247cc667127636553e215a325692 Mon Sep 17 00:00:00 2001 From: kirill lykov Date: Thu, 6 Feb 2025 00:16:06 +0100 Subject: [PATCH] Fix CI failure with missing blake3 feature (#4809) fix CI failure --- runtime-transaction/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime-transaction/Cargo.toml b/runtime-transaction/Cargo.toml index 47b8b937a27e87..438f53dce4f4b6 100644 --- a/runtime-transaction/Cargo.toml +++ b/runtime-transaction/Cargo.toml @@ -15,7 +15,7 @@ log = { workspace = true } solana-compute-budget = { workspace = true } solana-compute-budget-instruction = { workspace = true } solana-hash = { workspace = true } -solana-message = { workspace = true } +solana-message = { workspace = true, features = ["blake3"] } solana-pubkey = { workspace = true } solana-sdk-ids = { workspace = true } solana-signature = { workspace = true }