#[tokio::test] async fn test_reqwest_only() { let client = reqwest::Client::new(); let _res = client.get("http://localhost:8080").send().await; println!("Reqwest client used"); }