From 4e48b8033f4ee7639900ccfaa4e78a01978e083d Mon Sep 17 00:00:00 2001 From: Niklas Date: Sat, 15 Feb 2020 12:55:50 +0100 Subject: [PATCH] [verification]: make test-build compile standalone This commit makes `cargo test -p verification` work again, by using `common-types` with the `test-helpers` feature --- ethcore/verification/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/ethcore/verification/Cargo.toml b/ethcore/verification/Cargo.toml index f1edf865939..568afbc1728 100644 --- a/ethcore/verification/Cargo.toml +++ b/ethcore/verification/Cargo.toml @@ -32,6 +32,7 @@ triehash = { package = "triehash-ethereum", version = "0.2", path = "../../util unexpected = { path = "../../util/unexpected" } [dev-dependencies] +common-types = { path = "../types", features = ["test-helpers"] } criterion = "0.3" ethcore = { path = "../", features = ["test-helpers"] } parity-crypto = { version = "0.5.0", features = ["publickey"] }