diff --git a/Cargo.toml b/Cargo.toml index ef368543b..ca2ad9c6c 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 = { git = "https://github.com/NikVolf/docopt.rs.git" } -docopt_macros = { git = "https://github.com/NikVolf/docopt.rs.git", path = "docopt_macros" } +docopt = "0.6" +docopt_macros = "0.6" ctrlc = { git = "https://github.com/tomusdrw/rust-ctrlc.git" } -clippy = "0.0.39" +clippy = "0.0.41" ethcore-util = { path = "util" } ethcore = { path = "ethcore" } ethsync = { path = "sync" } diff --git a/ethcore/Cargo.toml b/ethcore/Cargo.toml index 7f8259e96..90d147a02 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.39" +clippy = "0.0.41" crossbeam = "0.1.5" lazy_static = "0.1" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index e5b5bb797..34da585f7 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.39" +clippy = "0.0.41" target_info = "0.1.0" rustc-serialize = "0.3" diff --git a/sync/Cargo.toml b/sync/Cargo.toml index eb060cf90..8eb6a1bee 100644 --- a/sync/Cargo.toml +++ b/sync/Cargo.toml @@ -10,7 +10,7 @@ authors = ["Ethcore