6 stable releases

1.1.2 Apr 1, 2025
1.1.1 Mar 31, 2025
1.0.2 May 8, 2024
1.0.1 Dec 24, 2021
1.0.0 Jan 28, 2021

#58 in HTTP client

Download history 34/week @ 2024-12-23 11/week @ 2024-12-30 8/week @ 2025-01-06 21/week @ 2025-01-13 34/week @ 2025-01-20 19/week @ 2025-01-27 87/week @ 2025-02-03 102/week @ 2025-02-10 110/week @ 2025-02-17 66/week @ 2025-02-24 27/week @ 2025-03-03 136/week @ 2025-03-10 54/week @ 2025-03-17 40/week @ 2025-03-24 361/week @ 2025-03-31 115/week @ 2025-04-07

592 downloads per month
Used in 7 crates

MIT license

47KB
740 lines

tinyget

ci Crate Documentation License

a tiny fork of minreq.

Simple, minimal-dependency HTTP client. Optional features for https with native-tls TLS implementations.

Documentation

Usage

Add this to your Cargo.toml:

[dependencies]
tinyget = "1.0"
let response = tinyget::get("https://httpbin.org/anything").send()?;
let hello = response.as_str()?;
println!("{}", hello);

Size

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)

Compare

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

License

This crate is distributed under the terms of the MIT license.

Dependencies

~0–9MB
~101K SLoC