Updates dependencies and tries to consolidate multiple version (#815)

This commit is contained in:
Bastian Köcher
2018-09-27 14:50:15 +02:00
committed by Gav Wood
parent 0ab3b2de35
commit 5eb1aefde6
26 changed files with 210 additions and 131 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate node implementation in Rust."
[dependencies]
log = "0.3"
log = "0.4"
tokio = "0.1.7"
exit-future = "0.1"
substrate-cli = { path = "../../core/cli" }
+1 -1
View File
@@ -8,7 +8,7 @@ futures = "0.1.17"
parking_lot = "0.4"
tokio = "0.1.7"
error-chain = "0.12"
log = "0.3"
log = "0.4"
exit-future = "0.1"
rhododendron = "0.3"
node-primitives = { path = "../primitives" }
+1 -1
View File
@@ -7,7 +7,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
parking_lot = "0.4"
error-chain = "0.12"
lazy_static = "1.0"
log = "0.3"
log = "0.4"
slog = "^2"
tokio = "0.1.7"
hex-literal = "0.1"
+1 -6
View File
@@ -31,11 +31,6 @@ use futures::{future, Future};
use std::cell::RefCell;
mod vergen {
#![allow(unused)]
include!(concat!(env!("OUT_DIR"), "/version.rs"));
}
// handles ctrl-c
struct Exit;
impl cli::IntoExit for Exit {
@@ -59,7 +54,7 @@ quick_main!(run);
fn run() -> cli::error::Result<()> {
let version = VersionInfo {
commit: vergen::short_sha(),
commit: env!("VERGEN_SHA_SHORT"),
version: env!("CARGO_PKG_VERSION"),
executable_name: "substrate",
author: "Parity Team <admin@parity.io>",
+1 -1
View File
@@ -4,7 +4,7 @@ version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
log = "0.3.0"
log = "0.4"
error-chain = "0.12"
parking_lot = "0.4"
node-primitives = { path = "../primitives" }