From 84c752583a06a98830d8e139401558945b84882f Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Sat, 13 Feb 2016 13:17:16 +0300 Subject: [PATCH] clippy version update, docopt-macro moving to fork --- Cargo.toml | 6 +++--- ethcore/Cargo.toml | 2 +- rpc/Cargo.toml | 2 +- sync/Cargo.toml | 2 +- util/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fb52d14d5..ef368543b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,10 +9,10 @@ authors = ["Ethcore "] log = "0.3" env_logger = "0.3" rustc-serialize = "0.3" -docopt = "0.6" -docopt_macros = "0.6" +docopt = { git = "https://github.com/NikVolf/docopt.rs.git" } +docopt_macros = { git = "https://github.com/NikVolf/docopt.rs.git", path = "docopt_macros" } ctrlc = { git = "https://github.com/tomusdrw/rust-ctrlc.git" } -clippy = "0.0.37" +clippy = "0.0.39" ethcore-util = { path = "util" } ethcore = { path = "ethcore" } ethsync = { path = "sync" } diff --git a/ethcore/Cargo.toml b/ethcore/Cargo.toml index be7652e17..7f8259e96 100644 --- a/ethcore/Cargo.toml +++ b/ethcore/Cargo.toml @@ -18,7 +18,7 @@ ethcore-util = { path = "../util" } evmjit = { path = "../evmjit", optional = true } ethash = { path = "../ethash" } num_cpus = "0.2" -clippy = "0.0.37" +clippy = "0.0.39" crossbeam = "0.1.5" lazy_static = "0.1" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 66688466c..e5b5bb797 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -16,6 +16,6 @@ jsonrpc-http-server = "1.1" ethcore-util = { path = "../util" } ethcore = { path = "../ethcore" } ethsync = { path = "../sync" } -clippy = "0.0.37" +clippy = "0.0.39" target_info = "0.1.0" rustc-serialize = "0.3" diff --git a/sync/Cargo.toml b/sync/Cargo.toml index 75853e0ab..eb060cf90 100644 --- a/sync/Cargo.toml +++ b/sync/Cargo.toml @@ -10,7 +10,7 @@ authors = ["Ethcore