From 4dd91d929b9cd4e1b507b97c13dfa959809ebd2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Klocek?= Date: Sat, 5 Oct 2024 12:36:22 +0200 Subject: [PATCH] [comm-lib] Add missing feature dependency to Cargo.toml Summary: Noticed that this was missing and compilation failed for services with enabled `blob-client` feature, but disabled `http` feature. Test Plan: cargo build -p comm-lib --all-features Reviewers: varun, will, kamil Reviewed By: kamil Subscribers: ashoat, tomek Differential Revision: https://phab.comm.dev/D13649 --- shared/comm-lib/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/comm-lib/Cargo.toml b/shared/comm-lib/Cargo.toml index 6fd48b60e1..9f14d41fbd 100644 --- a/shared/comm-lib/Cargo.toml +++ b/shared/comm-lib/Cargo.toml @@ -11,6 +11,7 @@ blob-client = [ "dep:reqwest", "dep:futures-core", "dep:futures-util", + "dep:tokio-stream", ] http = [ "dep:actix-cors",