mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-05-07 12:40:04 +00:00
Rename new_reqwest_client
> get_reqwest_client
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
6582eefd25
commit
5ad572fa42
2 changed files with 5 additions and 5 deletions
|
@ -80,12 +80,12 @@ pub fn initialize_reqwest_client(
|
|||
Ok(())
|
||||
}
|
||||
|
||||
pub fn new_reqwest_client() -> &'static Client {
|
||||
pub fn get_reqwest_client() -> &'static Client {
|
||||
CLIENT.get().expect("Reqwest client is not initialized")
|
||||
}
|
||||
|
||||
pub async fn remote_exists(url: Url, method: Method) -> Result<bool, BinstallError> {
|
||||
let req = new_reqwest_client()
|
||||
let req = get_reqwest_client()
|
||||
.request(method.clone(), url.clone())
|
||||
.send()
|
||||
.await
|
||||
|
@ -98,7 +98,7 @@ async fn create_request(
|
|||
) -> Result<impl Stream<Item = reqwest::Result<Bytes>>, BinstallError> {
|
||||
debug!("Downloading from: '{url}'");
|
||||
|
||||
new_reqwest_client()
|
||||
get_reqwest_client()
|
||||
.get(url.clone())
|
||||
.send()
|
||||
.await
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue