From d41f9eeec06b58198405c236513cd9431c63a1ef Mon Sep 17 00:00:00 2001 From: teor Date: Wed, 18 Jan 2023 12:24:44 +1000 Subject: [PATCH] Fix test dependency from zebra-rpc to zebra-network --- zebra-rpc/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 0d476ad2b9f..ae4c3d10b26 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -27,6 +27,7 @@ proptest-impl = [ "proptest-derive", "zebra-consensus/proptest-impl", "zebra-state/proptest-impl", + "zebra-network/proptest-impl", "zebra-chain/proptest-impl", ] @@ -79,5 +80,8 @@ thiserror = "1.0.38" tokio = { version = "1.24.1", features = ["full", "tracing", "test-util"] } zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] } +zebra-consensus = { path = "../zebra-consensus", features = ["proptest-impl"] } +zebra-network = { path = "../zebra-network", features = ["proptest-impl"] } zebra-state = { path = "../zebra-state", features = ["proptest-impl"] } + zebra-test = { path = "../zebra-test" }