A simple, fast and interruptable download accelerator, written in Rust
(A special thanks to @frankirito for this awesome logo !)
NOTE: Snatch 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) - also, the Interruptable feature is not implemented yet.
cargo install --git https://github.com/derniercri/snatch.git --branch devel
;``` Snatch 0.1.2 Snatch, a simple, fast and interruptable download accelerator, written in Rust.
USAGE:
snatch [FLAGS] [OPTIONS]
FLAGS: -d, --debug Activate the debug mode --force Assume Yes to all queries and do not prompt -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-f, --file
ARGS:
You want to contribute to Snatch ? 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 Snatch ! :-D
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