ib-update 0.1.0

A lightweight library for software update
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! HTTP client dispatchers for retrying requests across multiple client builders.

#[cfg(feature = "async")]
mod r#async;
#[cfg(feature = "blocking")]
mod blocking;

#[cfg(feature = "async")]
pub use r#async::AsyncHttp;
#[cfg(feature = "blocking")]
pub use blocking::BlockingHttp;