From 7ee23240f08a4ecf5d5f053c45498c76eedae787 Mon Sep 17 00:00:00 2001 From: Robert Habermeier Date: Wed, 25 May 2016 15:14:02 +0200 Subject: [PATCH] fix travis test build --- Cargo.lock | 2 ++ rpc/Cargo.toml | 6 ++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4dbcd1825..1a5b61a3b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -326,7 +326,9 @@ dependencies = [ "clippy 0.0.69 (registry+https://github.com/rust-lang/crates.io-index)", "ethash 1.2.0", "ethcore 1.2.0", + "ethcore-devtools 1.2.0", "ethcore-util 1.2.0", + "ethjson 0.1.0", "ethminer 1.2.0", "ethsync 1.2.0", "json-ipc-server 0.1.0 (git+https://github.com/ethcore/json-ipc-server.git)", diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 23fef5d06..61b51cf88 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -19,6 +19,8 @@ ethcore = { path = "../ethcore" } ethash = { path = "../ethash" } ethsync = { path = "../sync" } ethminer = { path = "../miner" } +ethjson = { path = "../json" } +ethcore-devtools = { path = "../devtools" } rustc-serialize = "0.3" transient-hashmap = "0.1" serde_macros = { version = "0.7.0", optional = true } @@ -29,10 +31,6 @@ json-ipc-server = { git = "https://github.com/ethcore/json-ipc-server.git" } serde_codegen = { version = "0.7.0", optional = true } syntex = "^0.32.0" -[dev-dependencies] -ethjson = { path = "../json" } -ethcore-devtools = { path = "../devtools" } - [features] default = ["serde_codegen"] nightly = ["serde_macros"]