Reads from stdin and sends for each line a get request. Uses the following parameters for the reqests:
We suggest that you install Rust using the 'rustup' tool. Rustup will install the latest version of Rust, Cargo, and the other development tools.
Follow the instructions at Installing Rust.
For Mac users, Homebrew is also an option. The Mac Homebrew command is brew
install rustup
and then rustup-init
. See Mac
Setup & Installing
Rust for more details.
After installation, you should have rustc
, cargo
, & rustup
. You should
also have ~/.cargo/bin
in your PATH environment variable.
You can run the application through cargo:
cargo run
Requests are considered retryable according to the rules implemented in
reqwest-retry::Retryable::from_reqwest_response
Cargo is used as the package manager and build system for send-reqwest
.
$ git clone https://github.com/Trust-NICKOL/send-reqwest.git
$ cd send-reqwest
$ cargo build --release
The unit-tests of this repository can be used to test the functionality of this library.
cargo test
There are currently no know issues with this tool.
Please you the issue tracker of the github repository if you have any problems using the library.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
For more information see CONTRIBUTING.
This software is released under the MIT License.