From 8988310c99388d9d4fb9d8d8aa69fc99bc1c68ce Mon Sep 17 00:00:00 2001 From: Remi Dettai Date: Fri, 13 Sep 2024 16:35:20 +0200 Subject: [PATCH] Fix builds with --all-features (#5419) * Fix builds with --all-features * Revert dev dependency removal --- quickwit/quickwit-codegen/example/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quickwit/quickwit-codegen/example/Cargo.toml b/quickwit/quickwit-codegen/example/Cargo.toml index 38b03f51f6a..e6380b1fb20 100644 --- a/quickwit/quickwit-codegen/example/Cargo.toml +++ b/quickwit/quickwit-codegen/example/Cargo.toml @@ -16,6 +16,7 @@ async-trait = { workspace = true } bytesize = { workspace = true } futures = { workspace = true } http = { workspace = true } +mockall = { workspace = true, optional = true } prost = { workspace = true } serde = { workspace = true } thiserror = { workspace = true } @@ -38,4 +39,4 @@ quickwit-actors = { workspace = true, features = ["testsuite"] } quickwit-codegen = { workspace = true } [features] -testsuite = [] +testsuite = ["mockall"]