| Crates.io | tinyget |
| lib.rs | tinyget |
| version | 1.1.4 |
| created_at | 2021-01-28 08:58:18.803832+00 |
| updated_at | 2025-12-08 22:12:33.147028+00 |
| description | Tiny HTTP(S) GET |
| homepage | https://github.com/justjavac/rust_tinyget |
| repository | https://github.com/justjavac/rust_tinyget |
| max_upload_size | |
| id | 347601 |
| size | 87,196 |
A tiny fork of minreq.
A simple, minimal-dependency HTTP client for Rust. It provides a clean and intuitive API for making HTTP requests with minimal overhead.
Add this to your Cargo.toml:
[dependencies]
tinyget = "1.1"
Basic usage:
use tinyget;
fn main() -> Result<(), Box<dyn std::error::Error>> {
// Simple GET request
let response = tinyget::get("https://httpbin.org/anything").send()?;
println!("Response: {}", response.as_str()?);
// With timeout
let response = tinyget::get("https://httpbin.org/anything")
.with_timeout(5)
.send()?;
println!("Response: {}", response.as_str()?);
Ok(())
}
To enable HTTPS support, add the https feature:
[dependencies]
tinyget = { version = "1.1", features = ["https"] }
To enable timeout support, add the timeout feature:
[dependencies]
tinyget = { version = "1.1", features = ["timeout"] }
You can set timeout in two ways:
let response = tinyget::get("https://httpbin.org/anything")
.with_timeout(5)
.send()?;
TINYGET_TIMEOUT=5 cargo run
let response = tinyget::get("https://httpbin.org/anything")
.with_header("User-Agent", "tinyget/1.1")
.send()?;
rustc 1.76.0 (07dca489a 2024-02-04)
| debug | release | |
|---|---|---|
| hello | 424,896 | 266,547 |
| http | 772,416(+348k) | 319,856(+53k) |
| https | 1,101,512(+677k) | 344,432(+78k) |
| http | https | |
|---|---|---|
| tinyget | 283,920 | 319,632 |
| minreq | 300,328 | 959,744 |
| ureq | 695,632 | 1,371,368 |
| reqwest | 1,639,496 | 1,675,032 |
Check out the examples directory for more usage examples:
This crate is distributed under the terms of the MIT license.