Merge pull request #7426 from paritytech/td-fix-final

Fix final feature.
This commit is contained in:
Marek Kotewicz 2018-01-02 14:09:18 +01:00 committed by GitHub
commit 8cd1f890ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -58,7 +58,7 @@ parity-updater = { path = "updater" }
parity-version = { path = "util/version" } parity-version = { path = "util/version" }
parity-whisper = { path = "whisper" } parity-whisper = { path = "whisper" }
path = { path = "util/path" } path = { path = "util/path" }
dir = { path = "util/dir" } dir = { path = "util/dir" }
panic_hook = { path = "panic_hook" } panic_hook = { path = "panic_hook" }
keccak-hash = { path = "util/hash" } keccak-hash = { path = "util/hash" }
migration = { path = "util/migration" } migration = { path = "util/migration" }
@ -101,6 +101,7 @@ evm-debug = ["ethcore/evm-debug"]
evm-debug-tests = ["ethcore/evm-debug-tests"] evm-debug-tests = ["ethcore/evm-debug-tests"]
slow-blocks = ["ethcore/slow-blocks"] slow-blocks = ["ethcore/slow-blocks"]
secretstore = ["ethcore-secretstore"] secretstore = ["ethcore-secretstore"]
final = ["parity-version/final"]
[[bin]] [[bin]]
path = "parity/main.rs" path = "parity/main.rs"

View File

@ -13,3 +13,6 @@ target_info = "0.1"
[build-dependencies] [build-dependencies]
vergen = "0.1" vergen = "0.1"
rustc_version = "0.1.0" rustc_version = "0.1.0"
[features]
final = []