This commit is contained in:
wborgeaud 2021-06-24 18:11:37 +02:00
parent 54315d1735
commit c7753186b8
2 changed files with 1 additions and 5 deletions

View File

@ -3,7 +3,7 @@ use anyhow::Result;
use crate::field::extension_field::Extendable;
use crate::field::field::Field;
use crate::fri::FriConfig;
use crate::gates::gate::{GateRef, PrefixedGate};
use crate::gates::gate::PrefixedGate;
use crate::generator::WitnessGenerator;
use crate::polynomial::commitment::ListPolynomialCommitment;
use crate::proof::{Hash, HashTarget, Proof};

View File

@ -1,9 +1,5 @@
use std::borrow::Borrow;
use std::collections::HashMap;
use std::fmt::{Debug, Error, Formatter};
use std::hash::{Hash, Hasher};
use std::iter::FromIterator;
use std::ops::Index;
use std::sync::Arc;
use crate::circuit_builder::CircuitBuilder;