add devtools dependency

This commit is contained in:
keorn 2016-09-19 10:41:01 +02:00
parent b31e732ebe
commit c6c45db1d0
2 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,7 @@ ethcore-network = { path = "../util/network" }
ethcore-io = { path = "../util/io" } ethcore-io = { path = "../util/io" }
ethcore = { path = "../ethcore" } ethcore = { path = "../ethcore" }
rlp = { path = "../util/rlp" } rlp = { path = "../util/rlp" }
ethcore-devtools = { path = "../devtools" }
clippy = { version = "0.0.85", optional = true} clippy = { version = "0.0.85", optional = true}
log = "0.3" log = "0.3"
env_logger = "0.3" env_logger = "0.3"

View File

@ -39,6 +39,8 @@ extern crate rlp;
#[cfg(test)] #[cfg(test)]
extern crate ethkey; extern crate ethkey;
#[cfg(test)]
extern crate ethcore_devtools as devtools;
#[macro_use] #[macro_use]
extern crate log; extern crate log;