cargo fix

This commit is contained in:
Daniel Lubarov 2021-11-01 21:42:29 -07:00
parent 31fda351c1
commit eb76bc5f67
3 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,7 @@ use plonky2::field::crandall_field::CrandallField;
use plonky2::field::goldilocks_field::GoldilocksField;
use plonky2::hash::gmimc::GMiMC;
use plonky2::hash::poseidon::Poseidon;
use plonky2::hash::rescue::rescue;
use tynm::type_name;
pub(crate) fn bench_gmimc<F: GMiMC<WIDTH>, const WIDTH: usize>(c: &mut Criterion) {

View File

@ -314,7 +314,6 @@ impl<F: RichField + Extendable<D>, const D: usize> CircuitBuilder<F, D> {
round_proof: &FriQueryRoundTarget<D>,
common_data: &CommonCircuitData<F, D>,
) {
let config = &common_data.config;
let n_log = log2_strict(n);
// TODO: Do we need to range check `x_index` to a target smaller than `p`?
let x_index = challenger.get_challenge(self);

View File

@ -1,5 +1,5 @@
use anyhow::Result;
use log::Level;
use rayon::prelude::*;
use crate::field::extension_field::Extendable;