monoio-netreq 0.1.2

monoio-netreq is a user-friendly HTTP client library designed for use with the Monoio runtime
Documentation
use http::{Method, Version};
use monoio_netreq::http::client::MonoioClient;

#[monoio::main(driver = "uring", timer = true)]
async fn main() -> anyhow::Result<()> {
    let client = MonoioClient::builder()
        .max_idle_connections(5) // Connection pool settings will be overridden by these
        .idle_connection_timeout(5)
        .enable_https()
        .http1_only()
        .build();

    let res = client
        .make_request()
        .set_method(Method::GET)
        .set_uri("https://httpbin.org/ip")
        .set_header("Content-Type", "application/json")
        .set_version(Version::HTTP_11)
        .send()
        .await?;

    assert_eq!(res.status(), 200);
    assert_eq!(res.version(), Version::HTTP_11);

    let string_response = String::from_utf8(res.bytes().await.unwrap().to_vec()).unwrap();
    println!("Result: {}", string_response);

    Ok(())
}