Skip to content

Commit 15a2592

Browse files
committed
Remove use for async-trait and improve docs and feature usage
1 parent ca6cfe8 commit 15a2592

File tree

3 files changed

+18
-19
lines changed

3 files changed

+18
-19
lines changed

Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ reqwest = { version = "0.11", features = ["json"], default-features = false, op
2626

2727
# default async runtime
2828
tokio = { version = "1.38", features = ["time"], optional = true }
29-
async-trait = { version = "0.1", optional = true }
3029

3130
[dev-dependencies]
3231
serde_json = "1.0"
@@ -42,8 +41,8 @@ blocking-https-rustls = ["blocking", "minreq/https-rustls"]
4241
blocking-https-native = ["blocking", "minreq/https-native"]
4342
blocking-https-bundled = ["blocking", "minreq/https-bundled"]
4443

45-
tokio = ["dep:tokio", "async"]
46-
async = ["reqwest", "reqwest/socks", "async-trait"]
44+
tokio = ["dep:tokio"]
45+
async = ["reqwest", "reqwest/socks"]
4746
async-https = ["async", "reqwest/default-tls"]
4847
async-https-native = ["async", "reqwest/native-tls"]
4948
async-https-rustls = ["async", "reqwest/rustls-tls"]

src/async.rs

+8-12
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@
1111

1212
//! Esplora by way of `reqwest` HTTP client.
1313
14-
use async_trait::async_trait;
1514
use std::collections::HashMap;
1615
use std::marker::PhantomData;
1716
use std::str::FromStr;
18-
use std::time::Duration;
1917

2018
use bitcoin::consensus::{deserialize, serialize, Decodable, Encodable};
2119
use bitcoin::hashes::{sha256, Hash};
@@ -43,6 +41,7 @@ pub struct AsyncClient<S = DefaultSleeper> {
4341
/// Number of times to retry a request
4442
max_retries: usize,
4543

44+
/// Marker for the type of sleeper used
4645
marker: PhantomData<S>,
4746
}
4847

@@ -453,22 +452,19 @@ fn is_status_retryable(status: reqwest::StatusCode) -> bool {
453452
RETRYABLE_ERROR_CODES.contains(&status.as_u16())
454453
}
455454

456-
/// Trait that defines the ability to sleep within an async runtime
457-
#[async_trait]
458-
pub trait Sleeper {
459-
/// Wait until the specified `duration` has elapsed
460-
async fn sleep(duration: Duration);
455+
pub trait Sleeper: 'static {
456+
type Sleep: std::future::Future<Output = ()>;
457+
fn sleep(dur: std::time::Duration) -> Self::Sleep;
461458
}
462459

463-
/// Default sleeper. Note this may only be used as a [`Sleeper`] implementation
464-
/// if the "tokio" feature is enabled.
465460
#[derive(Debug, Clone, Copy)]
466461
pub struct DefaultSleeper;
467462

468463
#[cfg(any(test, feature = "tokio"))]
469-
#[async_trait]
470464
impl Sleeper for DefaultSleeper {
471-
async fn sleep(duration: Duration) {
472-
tokio::time::sleep(duration).await;
465+
type Sleep = tokio::time::Sleep;
466+
467+
fn sleep(dur: std::time::Duration) -> Self::Sleep {
468+
tokio::time::sleep(dur)
473469
}
474470
}

src/lib.rs

+8-4
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ impl Builder {
181181
}
182182

183183
/// Build an asynchronous client from builder
184-
#[cfg(feature = "tokio")]
184+
#[cfg(all(feature = "async", feature = "tokio"))]
185185
pub fn build_async(self) -> Result<AsyncClient, Error> {
186186
AsyncClient::from_builder(self)
187187
}
@@ -271,7 +271,6 @@ mod test {
271271
bitcoind::bitcoincore_rpc::json::AddressType, bitcoind::bitcoincore_rpc::RpcApi,
272272
electrum_client::ElectrumApi,
273273
},
274-
r#async::DefaultSleeper,
275274
std::time::Duration,
276275
tokio::sync::OnceCell,
277276
};
@@ -330,8 +329,13 @@ mod test {
330329
let blocking_client = builder.build_blocking();
331330

332331
let builder_async = Builder::new(&format!("http://{}", esplora_url));
332+
333+
#[cfg(feature = "tokio")]
334+
let async_client = builder_async.build_async().unwrap();
335+
336+
#[cfg(not(feature = "tokio"))]
333337
let async_client = builder_async
334-
.build_async_with_sleeper::<DefaultSleeper>()
338+
.build_async_with_sleeper::<r#async::DefaultSleeper>()
335339
.unwrap();
336340

337341
(blocking_client, async_client)
@@ -1005,7 +1009,7 @@ mod test {
10051009
assert_eq!(tx, tx_async);
10061010
}
10071011

1008-
#[cfg(feature = "tokio")]
1012+
#[cfg(all(feature = "async", feature = "tokio"))]
10091013
#[test]
10101014
fn use_builder_with_tokio_as_normal() {
10111015
let builder = Builder::new("https://blockstream.info/testnet/api");

0 commit comments

Comments
 (0)