fix: remove tower service if wasm32

Signed-off-by: Gustavo Inacio <incio.gusta@gmail.com>
pull/162/head
Gustavo Inacio 2024-06-19 13:04:37 -06:00
parent 88dbfe67fb
commit f6c7097267
1 changed files with 2 additions and 0 deletions

View File

@ -247,6 +247,7 @@ impl fmt::Debug for ClientWithMiddleware {
}
}
#[cfg(not(target_arch = "wasm32"))]
mod service {
use std::{
future::Future,
@ -422,6 +423,7 @@ impl RequestBuilder {
/// The timeout is applied from when the request starts connecting until the
/// response body has finished. It affects only this request and overrides
/// the timeout configured using `ClientBuilder::timeout()`.
#[cfg(not(target_arch = "wasm32"))]
pub fn timeout(self, timeout: std::time::Duration) -> Self {
RequestBuilder {
inner: self.inner.timeout(timeout),