cargo fmt

This commit is contained in:
Eirik Ogilvie-Wigley 2019-08-20 22:22:03 -06:00
parent c28ae31c71
commit 76795a9014
7 changed files with 0 additions and 61 deletions

View File

@ -1,13 +1,3 @@
#[cfg(feature = "multicore")]
extern crate crossbeam;
@ -21,10 +11,6 @@ extern crate hex_literal;
#[cfg(test)]
extern crate rand;
pub mod domain;
pub mod gadgets;
#[cfg(feature = "groth16")]

View File

@ -1,8 +1,3 @@
// For randomness (during paramgen and proof generation)
use rand::thread_rng;

View File

@ -1,8 +1,5 @@
#![allow(unused_imports)]
#[cfg(feature = "derive")]
#[macro_use]
extern crate ff_derive;

View File

@ -1,7 +1,3 @@
use ff::{PrimeField, PrimeFieldDecodingError, ScalarEngine, SqrtField};
use rand::RngCore;
use std::error::Error;

View File

@ -1,15 +1,3 @@
use lazy_static;
use ff::{PrimeField, PrimeFieldRepr};

View File

@ -11,13 +11,6 @@
// Force public structures to implement Debug
#![deny(missing_debug_implementations)]
#[cfg(test)]
pub mod tests;

View File

@ -1,26 +1,10 @@
#[macro_use]
extern crate lazy_static;
#[cfg(test)]
#[macro_use]
extern crate hex_literal;
pub mod block;
pub mod constants;
pub mod group_hash;