From b0c2c8d4783cd16aa21380599058c10739dcb26c Mon Sep 17 00:00:00 2001 From: mxve <68632137+mxve@users.noreply.github.com> Date: Mon, 9 Dec 2024 04:25:18 +0100 Subject: [PATCH] remove unused dep --- Cargo.lock | 28 ---------------------------- Cargo.toml | 1 - 2 files changed, 29 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6533d8a..3d60fa1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -41,7 +41,6 @@ dependencies = [ "steamlocate", "strip-ansi-escapes", "tokio", - "ureq", "winresource", ] @@ -1300,9 +1299,7 @@ version = "0.23.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "934b404430bb06b3fae2cba809eb45a1ab1aecd64491213d7c3301b88393f8d1" dependencies = [ - "log", "once_cell", - "ring", "rustls-pki-types", "rustls-webpki", "subtle", @@ -1895,22 +1892,6 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" -[[package]] -name = "ureq" -version = "2.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b74fc6b57825be3373f7054754755f03ac3a8f5d70015ccad699ba2029956f4a" -dependencies = [ - "base64", - "flate2", - "log", - "once_cell", - "rustls", - "rustls-pki-types", - "url", - "webpki-roots", -] - [[package]] name = "url" version = "2.4.1" @@ -2064,15 +2045,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "webpki-roots" -version = "0.26.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e" -dependencies = [ - "rustls-pki-types", -] - [[package]] name = "which" version = "4.4.2" diff --git a/Cargo.toml b/Cargo.toml index 0930457..bb06fbf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,6 @@ semver = "1.0.23" colored = "2.1.0" once_cell = "1.20.0" reqwest = { version = "0.12.7", features = ["stream"] } -ureq = "2.9" futures-util = "0.3.30" indicatif = "0.17.8" tokio = {version="1.40.0", features = ["rt-multi-thread", "macros"]}