diff --git a/src/reqwest_client.rs b/src/reqwest_client.rs index d93d80b..30699b4 100644 --- a/src/reqwest_client.rs +++ b/src/reqwest_client.rs @@ -10,7 +10,7 @@ impl<'c> AsyncHttpClient<'c> for reqwest::Client { type Future = Pin> + 'c>>; #[cfg(not(target_arch = "wasm32"))] type Future = - Pin> + Send + Sync + 'c>>; + Pin> + Send + 'c>>; fn call(&'c self, request: HttpRequest) -> Self::Future { Box::pin(async move {