Skip to main content

hexz_store/http/
mod.rs

1//! HTTP/HTTPS storage backend using `reqwest` with manual redirect following.
2//!
3//! Range requests are re-sent verbatim on each redirect hop so that CDN
4//! cross-origin redirects (e.g. GitHub Releases → Azure Blob) work correctly.
5
6pub mod async_client;
7
8pub use async_client::HttpBackend;