The client supports HTTP/1.1, TLS and redirects. It is a demo for the http-with-url crate.
```rust extern crate boguin; extern crate httpwithurl as http;
fn main() {
let mut client = boguin::Client::new();
let url = http::Url::parse("https://httpbin.org/status/418").unwrap();
let request = http::Request::new(url, ());
let response: http::Response
You can also use the command line client with cargo run --example boguin
.