Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions plonky2/src/util/serialization/gate_serialization.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
//! A module to help with GateRef serialization

// For macros below
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;
pub use alloc::vec::Vec;
#[cfg(feature = "std")]
use std::vec::Vec; // For macros below
pub use std::vec::Vec;

use plonky2_field::extension::Extendable;

Expand Down
Loading