Skip to content

Commit

Permalink
changed to web-time in circuit_builder (0xPolygonZero#1624)
Browse files Browse the repository at this point in the history
* changed to web-time in circuit_builder

* Rustfmt

---------

Co-authored-by: Robin Salen <[email protected]>
  • Loading branch information
armanthepythonguy and Nashtare authored Sep 10, 2024
1 parent bf95c10 commit 41dc325
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plonky2/src/plonk/circuit_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
use alloc::{collections::BTreeMap, sync::Arc, vec, vec::Vec};
use core::cmp::max;
#[cfg(feature = "std")]
use std::{collections::BTreeMap, sync::Arc, time::Instant};
use std::{collections::BTreeMap, sync::Arc};

use hashbrown::{HashMap, HashSet};
use itertools::Itertools;
use log::{debug, info, warn, Level};
#[cfg(feature = "timing")]
use web_time::Instant;

use crate::field::cosets::get_unique_coset_shifts;
use crate::field::extension::{Extendable, FieldExtension};
Expand Down

0 comments on commit 41dc325

Please sign in to comment.