From 5169e8fda4a44e3f75028c4dc131894bc2fe2d54 Mon Sep 17 00:00:00 2001 From: jonesmarvin8 <83104039+jonesmarvin8@users.noreply.github.com> Date: Mon, 8 Dec 2025 22:12:02 -0500 Subject: [PATCH] cargo fix --- nssa/core/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nssa/core/Cargo.toml b/nssa/core/Cargo.toml index 0e16a3f..973f099 100644 --- a/nssa/core/Cargo.toml +++ b/nssa/core/Cargo.toml @@ -7,7 +7,7 @@ edition = "2024" risc0-zkvm = { version = "3.0.3", features = ['std'] } serde = { version = "1.0", default-features = false } thiserror = { version = "2.0.12", optional = true } -bytemuck = { version = "1.13", optional = true } +bytemuck = "1.13" chacha20 = { version = "0.9", default-features = false } k256 = { version = "0.13.3", optional = true } base58 = { version = "0.2.0", optional = true } @@ -16,4 +16,4 @@ borsh = "1.5.7" [features] default = [] -host = ["thiserror", "bytemuck", "k256", "base58", "anyhow"] +host = ["thiserror", "k256", "base58", "anyhow"]