Skip to content

Commit

Permalink
Merge pull request zkcrypto#21 from zkcrypto/from-downstream
Browse files Browse the repository at this point in the history
Remove unneeded extern crate
  • Loading branch information
str4d committed Apr 24, 2020
2 parents ddff465 + d257a1e commit e3e0ea6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
8 changes: 1 addition & 7 deletions ff_derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,11 @@

extern crate proc_macro;
extern crate proc_macro2;
extern crate syn;
#[macro_use]
extern crate quote;

extern crate num_bigint;
extern crate num_integer;
extern crate num_traits;

use num_bigint::BigUint;
use num_integer::Integer;
use num_traits::{One, ToPrimitive, Zero};
use quote::quote;
use quote::TokenStreamExt;
use std::str::FromStr;

Expand Down
4 changes: 0 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
#![deny(intra_doc_link_resolution_failure)]
#![allow(unused_imports)]

#[cfg(feature = "derive")]
#[macro_use]
extern crate ff_derive;

#[cfg(feature = "derive")]
pub use ff_derive::*;

Expand Down

0 comments on commit e3e0ea6

Please sign in to comment.