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 -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>",