From 457d8baf30856a77e7490d70e04273ab6c9cb983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Tue, 2 Jan 2018 11:02:04 +0100 Subject: [PATCH] Fix final feature. --- Cargo.toml | 3 ++- util/version/Cargo.toml | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7c21668a4..851fedda3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ parity-updater = { path = "updater" } parity-version = { path = "util/version" } parity-whisper = { path = "whisper" } path = { path = "util/path" } -dir = { path = "util/dir" } +dir = { path = "util/dir" } panic_hook = { path = "panic_hook" } keccak-hash = { path = "util/hash" } migration = { path = "util/migration" } @@ -101,6 +101,7 @@ evm-debug = ["ethcore/evm-debug"] evm-debug-tests = ["ethcore/evm-debug-tests"] slow-blocks = ["ethcore/slow-blocks"] secretstore = ["ethcore-secretstore"] +final = ["parity-version/final"] [[bin]] path = "parity/main.rs" diff --git a/util/version/Cargo.toml b/util/version/Cargo.toml index 44f5a08f2..dc1d0a86e 100644 --- a/util/version/Cargo.toml +++ b/util/version/Cargo.toml @@ -13,3 +13,6 @@ target_info = "0.1" [build-dependencies] vergen = "0.1" rustc_version = "0.1.0" + +[features] +final = []