A simple and fast download accelerator, written in Rust
Zou is a Snatch fork by @k0pernicus. Snatch is a fast and interruptable download accelerator, written in Rust, from @k0pernicus and @Jean-Serge.
NOTE: Zou is on alpha version.
This version runs well on remote contents with a length known before the download (with the content-length
header from the server response).
Let's build a better wget
(in Rust)!
cargo install zou
;cargo install --git https://github.com/k0pernicus/zou.git --branch devel
;Zou 0.2.0
Zou, a simple and fast download accelerator, written in Rust.
USAGE:
zou [FLAGS] [OPTIONS] <url>
FLAGS:
-d, --debug Active the debug mode
--force Assume Yes to all queries and do not prompt
-h, --help Prints help information
-s, --ssl_support Switch to an SSL client
-V, --version Prints version information
OPTIONS:
-o, --output <output> Specify the local output
-t, --threads <threads> Threads which can use to download
ARGS:
<url>
You want to contribute to Zou ? Here are a few ways you can help us out :
If you want to create a pull request, this is the procedure to make it great:
devel
branch),devel
branch),Thank you for your interest in contributing to Zou ! :-D
Why this fork ?
Snatch has been developed when I was a R&D engineer at DernierCri - it was a "just-for-fun" project.
Today, I do not work anymore in/with this startup, and I want to experiment something different.
Zou
is now a fun way to hack with Rust! :-)
Libraries cannot be build
Please go check if you are using the latest version of rustc
(stable), running rustup update
.
fatal error: 'openssl/hmac.h' file not found
If you are on a GNU/Linux distribution (like Ubuntu), please install libssl-dev
.
If you are on macOS, please install openssl
and check your OpenSSL configuration:
brew install openssl
export OPENSSL_INCLUDE_DIR=`brew --prefix openssl`/include
export OPENSSL_LIB_DIR=`brew --prefix openssl`/lib
export DEP_OPENSSL_INCLUDE=`brew --prefix openssl`/include