Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Nov 16, 2024
1 parent c149f10 commit 54abee3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions crates/proof-sdk/std-fpvm/src/channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ use kona_preimage::{
errors::{ChannelError, ChannelResult},
Channel,
};
use alloc::boxed::Box;

/// [FileChannel] is a handle for one end of a bidirectional channel.
#[derive(Debug, Clone, Copy)]
Expand Down
4 changes: 3 additions & 1 deletion crates/proof-sdk/std-fpvm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
)]
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
#![cfg_attr(target_arch = "mips", feature(asm_experimental_arch))]
#![cfg_attr(any(target_arch = "mips", target_arch = "riscv64", target_os = "zkvm"), no_std)]
#![no_std]

extern crate alloc;

pub mod errors;

Expand Down

0 comments on commit 54abee3

Please sign in to comment.