cargo fix --edition-idioms for zcash_proofs

This commit is contained in:
Eirik Ogilvie-Wigley 2019-08-21 16:13:10 -06:00
parent fec961777c
commit 53182aa08e
2 changed files with 0 additions and 25 deletions

View File

@ -1,11 +1,3 @@
extern crate bellman;
extern crate ff;
extern crate pairing;
extern crate rand_core;
extern crate rand_xorshift;
extern crate zcash_primitives;
extern crate zcash_proofs;
use bellman::groth16::*;
use ff::Field;
use pairing::bls12_381::{Bls12, Fr};

View File

@ -1,20 +1,3 @@
extern crate bellman;
extern crate blake2b_simd;
extern crate byteorder;
extern crate ff;
extern crate pairing;
extern crate rand_os;
extern crate zcash_primitives;
#[cfg(feature = "local-prover")]
extern crate directories;
#[cfg(test)]
extern crate rand_core;
#[cfg(test)]
extern crate rand_xorshift;
use bellman::groth16::{prepare_verifying_key, Parameters, PreparedVerifyingKey, VerifyingKey};
use pairing::bls12_381::Bls12;
use std::fs::File;