From 67194c4336dfdb0ca819b9f8bf378d6c21c00738 Mon Sep 17 00:00:00 2001 From: teor Date: Thu, 19 Jan 2023 19:12:31 +1000 Subject: [PATCH] Fix test dependency from zebra-rpc to zebra-network (#5992) --- zebra-rpc/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 8708950042e..29c927f4c50 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.2", 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" }