| Crates.io | mwget |
| lib.rs | mwget |
| version | 1.0.2 |
| created_at | 2026-01-15 03:28:41.927237+00 |
| updated_at | 2026-01-15 03:28:41.927237+00 |
| description | A multi-threaded wget implementation in Rust |
| homepage | https://github.com/rayylee/mwget |
| repository | https://github.com/rayylee/mwget |
| max_upload_size | |
| id | 2044491 |
| size | 124,986 |
A high-performance, multi-threaded wget implementation written in Rust.
git clone <repository-url>
cd mwget
cargo build --release
The compiled binary will be available at target/release/mwget.
Basic usage is similar to wget:
# Download a file
mwget https://example.com/file.zip
# Use 8 concurrent connections
mwget -n 8 https://example.com/large-file.iso
cargo build
RUST_LOG=debug cargo run -- <url>
cargo test
cargo clippy
cargo fmt