From 2629841793525c6c68bf19318080e004806735ad Mon Sep 17 00:00:00 2001 From: kevinheavey Date: Thu, 20 Jun 2024 05:53:36 +0400 Subject: [PATCH] explicitly activate the derive feature of bytemuck in zk-sdk --- zk-sdk/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zk-sdk/Cargo.toml b/zk-sdk/Cargo.toml index 8b67d12c693987..08276b941c76a0 100644 --- a/zk-sdk/Cargo.toml +++ b/zk-sdk/Cargo.toml @@ -11,7 +11,7 @@ edition = { workspace = true } [dependencies] base64 = { workspace = true } -bytemuck = { workspace = true } +bytemuck = { workspace = true, features = ["derive"] } merlin = { workspace = true } num-derive = { workspace = true } num-traits = { workspace = true }