dw-rs 0.2.0

A blazingly fast, parallel download accelerator written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `dw` — a parallel download accelerator.
//!
//! The crate is exposed as a library so that both the `dw` binary and the
//! benchmark harness (`benches/throughput.rs`) can drive the exact same
//! download engine without shelling out.

pub mod config;
pub mod downloader;
pub mod utils;

pub use config::DownloadConfig;
pub use downloader::DownloadOptimizer;