| Crates.io | rusty-request |
| lib.rs | rusty-request |
| version | 0.1.2 |
| created_at | 2024-11-05 11:10:37.95637+00 |
| updated_at | 2024-11-05 11:12:55.050127+00 |
| description | A lightweight Rust library for making HTTP GET requests. |
| homepage | https://crates.io/crates/rusty_request |
| repository | https://github.com/HashiramaSenjuhari/rusty_request |
| max_upload_size | |
| id | 1436379 |
| size | 38,211 |
rusty_request is a lightweight Rust library designed to simplify making HTTP GET requests. Whether you are fetching data from a REST API or a web resource, rusty_request provides an easy and efficient way to handle GET requests.
Add the following line to your Cargo.toml file:
[dependencies]
rusty_request = "0.1.1"
use request::Get;
let get = Get::new(&stream);
get.path("/api/path").content(//data here).send();