Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Signed-off-by: Xavier Lau <[email protected]>
  • Loading branch information
aurexav authored Dec 19, 2024
1 parent 0c19b21 commit 476fa07
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ Now it has evolved into a more generic solution, allowing you to implement the `
// std
use std::sync::LazyLock;
// crates.io
use reqwew::{reqwest::Client, Http, Response};
use reqwew::{
reqwest::{Client, Method},
Http, Response,
};
use serde_json::Value;

// Lazy static.
Expand Down Expand Up @@ -59,7 +62,9 @@ assert_eq!(resp.json::<Value>().unwrap()["url"].as_str().unwrap(), "https://http
use std::sync::LazyLock;
// crates.io
use reqwew::{
blocking::Http as BlockingHttp, reqwest::blocking::Client as BlockingClient, Response,
blocking::Http as BlockingHttp,
reqwest::{blocking::Client as BlockingClient, Method},
Response,
};
use serde_json::Value;

Expand Down

0 comments on commit 476fa07

Please sign in to comment.