From 7815d118e7ef559f0d0a314f4a6bdda6f1d6082f Mon Sep 17 00:00:00 2001 From: Lucas Kent Date: Thu, 14 Sep 2023 09:27:07 +1000 Subject: [PATCH] windsock: required-features = alpha-transforms --- shotover-proxy/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shotover-proxy/Cargo.toml b/shotover-proxy/Cargo.toml index a49505f61..8b1a2ed27 100644 --- a/shotover-proxy/Cargo.toml +++ b/shotover-proxy/Cargo.toml @@ -64,3 +64,6 @@ rdkafka-driver-tests = ["test-helpers/rdkafka-driver-tests"] [[bench]] name = "windsock" harness = false +# windsock is dependent on the DebugForceEncode transform for the shotover=message-parsed benches. +# rather than manually adding #[cfg(feature = "alpha-transforms")] everywhere we just forbid compilation entirely without the alpha-transforms feature +required-features = ["alpha-transforms"]