From f0f969ef4f0e860f5cea383e3a859817b06f9e13 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Mon, 5 Dec 2022 12:23:40 +0100 Subject: [PATCH] Fix tokio implementation --- Cargo.toml | 2 +- src/lib.rs | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fdd4325..86762d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,6 +33,6 @@ surf = { version = "^2.1.0", optional=true, default-features=false} [dev-dependencies] mockito = "0.28.0" maplit = "1.0.2" -tokio = { version = "^0.2.5", features = ["full"]} +tokio = { version = "^1.21.2", features = ["full"]} env_logger = "0.8.2" serde_json = "^1.0" diff --git a/src/lib.rs b/src/lib.rs index 9d36603..0c96600 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -293,9 +293,13 @@ impl surf::middleware::Middleware for BearerToken { #[cfg(feature = "async")] fn async_client(token: &str, base_url: &str) -> surf::Client { - let mut async_client = surf::client(); - async_client.set_base_url(surf::Url::parse(base_url).expect("Static string should parse")); - async_client.with(BearerToken::new(token)) + use std::convert::TryInto; + + let client: surf::Client = surf::Config::new() + .set_base_url(surf::Url::parse(base_url).expect("Could not parse base url")) + .try_into() + .expect("Could not create client"); + client.with(BearerToken::new(token)) } #[cfg(feature = "sync")]