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

#57 in HTTP client

Download history 22/week @ 2024-12-28 4/week @ 2025-01-04 22/week @ 2025-01-11 22/week @ 2025-01-18 32/week @ 2025-01-25 44/week @ 2025-02-01 122/week @ 2025-02-08 104/week @ 2025-02-15 84/week @ 2025-02-22 40/week @ 2025-03-01 88/week @ 2025-03-08 92/week @ 2025-03-15 42/week @ 2025-03-22 330/week @ 2025-03-29 120/week @ 2025-04-05 82/week @ 2025-04-12

585 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
~100K SLoC