From 5450109cf2a69fcdfc8bb191df9b87d782add01c Mon Sep 17 00:00:00 2001 From: mxve <68632137+mxve@users.noreply.github.com> Date: Tue, 20 Feb 2024 01:28:49 +0100 Subject: [PATCH] remove http_req from deps --- Cargo.lock | 20 -------------------- Cargo.toml | 1 - 2 files changed, 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c9cd101..b1f561f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -23,7 +23,6 @@ version = "0.6.7" dependencies = [ "colored", "futures-util", - "http_req", "indicatif", "mslnk", "openssl", @@ -443,16 +442,6 @@ dependencies = [ "pin-project-lite", ] -[[package]] -name = "http_req" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90394b01e9de1f7eca6ca0664cc64bd92add9603c1aa4f961813f23789035e10" -dependencies = [ - "native-tls", - "unicase", -] - [[package]] name = "httparse" version = "1.8.0" @@ -1338,15 +1327,6 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" -[[package]] -name = "unicase" -version = "2.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" -dependencies = [ - "version_check", -] - [[package]] name = "unicode-bidi" version = "0.3.13" diff --git a/Cargo.toml b/Cargo.toml index d3a3ead..5b69767 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,6 @@ panic = "abort" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -http_req = "0.10.2" sha1_smol = "1.0.0" serde = { version = "1.0.196", features = ["derive"] } serde_json = "1.0.113"