dw_rs/lib.rs
1//! `dw` — a parallel download accelerator.
2//!
3//! The crate is exposed as a library so that both the `dw` binary and the
4//! benchmark harness (`benches/throughput.rs`) can drive the exact same
5//! download engine without shelling out.
6
7pub mod config;
8pub mod downloader;
9pub mod utils;
10
11pub use config::DownloadConfig;
12pub use downloader::DownloadOptimizer;