fix(client): make ResponseFuture implement Sync

This commit is contained in:
Alice Ryhl
2021-09-19 18:08:30 +02:00
committed by Sean McArthur
parent d0c6aaa59d
commit bd6c35b98f
2 changed files with 24 additions and 10 deletions

View File

@@ -18,7 +18,10 @@ pub(crate) mod io;
#[cfg(all(feature = "client", any(feature = "http1", feature = "http2")))]
mod lazy;
mod never;
#[cfg(feature = "stream")]
#[cfg(any(
feature = "stream",
all(feature = "client", any(feature = "http1", feature = "http2"))
))]
pub(crate) mod sync_wrapper;
pub(crate) mod task;
pub(crate) mod watch;