3 stable releases

1.0.2 May 8, 2024
1.0.1 Dec 24, 2021
1.0.0 Jan 28, 2021

#81 in HTTP client

Download history 167/week @ 2024-04-01 36/week @ 2024-04-08 30/week @ 2024-04-15 39/week @ 2024-04-22 48/week @ 2024-04-29 197/week @ 2024-05-06 34/week @ 2024-05-13 41/week @ 2024-05-20 39/week @ 2024-05-27 35/week @ 2024-06-03 20/week @ 2024-06-10 39/week @ 2024-06-17 22/week @ 2024-06-24 1/week @ 2024-07-01 7/week @ 2024-07-08 112/week @ 2024-07-15

147 downloads per month
Used in 6 crates

MIT license

40KB
621 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–8.5MB
~83K SLoC