Skip to main content

bytefetch/
lib.rs

1//! # ByteFetch
2//!
3//! `ByteFetch`  is a Rust library that makes HTTP file downloads easier to implement.
4//!
5//! 🚧  **This project is under active development.**
6//!
7//! The current version is an early release to reserve the crate name on [crates.io](https://crates.io/crates/bytefetch).
8mod http;
9pub use http::{HttpDownloader, HttpDownloaderSetupErrors};