Make macro_use explicit.

This commit is contained in:
Andreas Fackler 2018-05-15 17:38:41 +02:00
parent 83e3d00444
commit 9365d8c277
1 changed files with 3 additions and 3 deletions

View File

@ -3,12 +3,12 @@ extern crate colored;
#[macro_use]
extern crate error_chain;
extern crate ethabi;
#[macro_use]
#[macro_use(EthabiContract)]
extern crate ethabi_derive;
#[macro_use]
#[macro_use(use_contract)]
extern crate ethabi_contract;
extern crate serde;
#[macro_use]
#[macro_use(Deserialize)]
extern crate serde_derive;
extern crate serde_json;
extern crate web3;