# tinyget
[](https://github.com/justjavac/rust_tinyget/actions)
[](https://crates.io/crates/tinyget)
[](https://crates.io/crates/tinyget)
[](https://docs.rs/tinyget)

> a tiny fork of [minreq](https://crates.io/crates/minreq).
Simple, minimal-dependency HTTP client. Optional features for https with `native-tls` TLS implementations.
[Documentation](https://docs.rs/tinyget)
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
tinyget = "1.0"
```
```rust
let response = tinyget::get("https://httpbin.org/anything").send()?;
let hello = response.as_str()?;
println!("{}", hello);
```
## Size
rustc 1.49.0 (e1884a8e3 2020-12-29)
| [**hello**][1] | 262,864 | 233,752 |
| [**http**][2] | 498,040(+235k) | 283,920(+50k) |
| [**https**][3] | 702,696(+440k) | 319,632(+87k) |
[1]: ./examples/hello.rs
[2]: ./examples/http.rs
[3]: ./examples/https.rs
## License
This crate is distributed under the terms of the [MIT license](./LICENSE).