A tiny asynchronous HTTP/1.1 client library for Rust.
```rust use fibershttpclient::connection::Oneshot; use fibershttpclient::Client; use url::Url;
let url = Url::parse("http://localhost/foo/bar").unwrap(); let mut client = Client::new(Oneshot); let future = client.request(&url).get();
let response = fibersglobal::execute(future).unwrap(); println!("STATUS: {:?}", response.statuscode()); println!("BODY: {:?}", response.body()); ```