Remove unnecessary extern crates
Since Rust 2018, these are implied.
This commit is contained in:
parent
2030fb488b
commit
18a85dc3bd
13
src/lib.rs
13
src/lib.rs
|
@ -137,19 +137,6 @@
|
||||||
// Catch documentation errors caused by code changes.
|
// Catch documentation errors caused by code changes.
|
||||||
#![deny(intra_doc_link_resolution_failure)]
|
#![deny(intra_doc_link_resolution_failure)]
|
||||||
|
|
||||||
#[cfg(feature = "multicore")]
|
|
||||||
extern crate crossbeam;
|
|
||||||
|
|
||||||
#[cfg(feature = "multicore")]
|
|
||||||
extern crate num_cpus;
|
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
#[macro_use]
|
|
||||||
extern crate hex_literal;
|
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
extern crate rand;
|
|
||||||
|
|
||||||
pub mod domain;
|
pub mod domain;
|
||||||
pub mod gadgets;
|
pub mod gadgets;
|
||||||
#[cfg(feature = "groth16")]
|
#[cfg(feature = "groth16")]
|
||||||
|
|
Loading…
Reference in New Issue