|
4 | 4 | //! async Esplora client to query Esplora's backend.
|
5 | 5 | //!
|
6 | 6 | //! The library provides the possibility to build a blocking
|
7 |
| -//! client using [`minreq`] and an async client using [`reqwest`]. |
| 7 | +//! client using [`minreq`] and an async client using [`async_minreq`]. |
8 | 8 | //! The library supports communicating to Esplora via a proxy
|
9 | 9 | //! and also using TLS (SSL) for secure communication.
|
10 | 10 | //!
|
|
53 | 53 | //! capabilities using the platform's native TLS backend (likely OpenSSL).
|
54 | 54 | //! * `blocking-https-bundled` enables [`minreq`], the blocking client with proxy and TLS (SSL)
|
55 | 55 | //! capabilities using a bundled OpenSSL library backend.
|
56 |
| -//! * `async` enables [`reqwest`], the async client with proxy capabilities. |
57 |
| -//! * `async-https` enables [`reqwest`], the async client with support for proxying and TLS (SSL) |
58 |
| -//! using the default [`reqwest`] TLS backend. |
59 |
| -//! * `async-https-native` enables [`reqwest`], the async client with support for proxying and TLS |
| 56 | +//! * `async` enables [`async_minreq`], the async client with proxy capabilities. |
| 57 | +//! * `async-https` enables [`async_minreq`], the async client with support for proxying and TLS (SSL) |
| 58 | +//! using the default [`async_minreq`] TLS backend. |
| 59 | +//! * `async-https-native` enables [`async_minreq`], the async client with support for proxying and TLS |
60 | 60 | //! (SSL) using the platform's native TLS backend (likely OpenSSL).
|
61 |
| -//! * `async-https-rustls` enables [`reqwest`], the async client with support for proxying and TLS |
| 61 | +//! * `async-https-rustls` enables [`async_minreq`], the async client with support for proxying and TLS |
62 | 62 | //! (SSL) using the `rustls` TLS backend.
|
63 |
| -//! * `async-https-rustls-manual-roots` enables [`reqwest`], the async client with support for |
| 63 | +//! * `async-https-rustls-manual-roots` enables [`async_minreq`], the async client with support for |
64 | 64 | //! proxying and TLS (SSL) using the `rustls` TLS backend without using its the default root
|
65 | 65 | //! certificates.
|
66 | 66 | //!
|
|
0 commit comments