Fix tokio implementation
This commit is contained in:
parent
d552f4047b
commit
f0f969ef4f
@ -33,6 +33,6 @@ surf = { version = "^2.1.0", optional=true, default-features=false}
|
|||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
mockito = "0.28.0"
|
mockito = "0.28.0"
|
||||||
maplit = "1.0.2"
|
maplit = "1.0.2"
|
||||||
tokio = { version = "^0.2.5", features = ["full"]}
|
tokio = { version = "^1.21.2", features = ["full"]}
|
||||||
env_logger = "0.8.2"
|
env_logger = "0.8.2"
|
||||||
serde_json = "^1.0"
|
serde_json = "^1.0"
|
||||||
|
10
src/lib.rs
10
src/lib.rs
@ -293,9 +293,13 @@ impl surf::middleware::Middleware for BearerToken {
|
|||||||
|
|
||||||
#[cfg(feature = "async")]
|
#[cfg(feature = "async")]
|
||||||
fn async_client(token: &str, base_url: &str) -> surf::Client {
|
fn async_client(token: &str, base_url: &str) -> surf::Client {
|
||||||
let mut async_client = surf::client();
|
use std::convert::TryInto;
|
||||||
async_client.set_base_url(surf::Url::parse(base_url).expect("Static string should parse"));
|
|
||||||
async_client.with(BearerToken::new(token))
|
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")]
|
#[cfg(feature = "sync")]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user