#[tokio::main]
async fn main() -> Result<(), async_minreq::Error> {
let response = async_minreq::get("http://httpbin.org/anything")
.with_body("Hello, world!")
.send()
.await?;
let json: serde_json::Value = response.json()?;
println!("\"Hello, world!\" == {}", json["data"]);
Ok(())
}