Skip to content

Commit

Permalink
Fix wasm target compilation.
Browse files Browse the repository at this point in the history
  • Loading branch information
feltroidprime committed Oct 16, 2024
1 parent 4e92ec7 commit a05592d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions math/src/polynomial/mod.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use super::field::element::FieldElement;
use crate::field::traits::{IsField, IsPrimeField, IsSubFieldOf};
use alloc::{borrow::ToOwned, vec, vec::Vec};
use alloc::string::{String, ToString};
use alloc::{borrow::ToOwned, format, vec, vec::Vec};
use core::{fmt::Display, ops};

pub mod dense_multilinear_poly;
mod error;
pub mod sparse_multilinear_poly;
Expand Down

0 comments on commit a05592d

Please sign in to comment.