From 67fcf7d40ef23d0a30ba2123aa18cca27dba4c05 Mon Sep 17 00:00:00 2001 From: Aditya Manthramurthy Date: Mon, 17 Jun 2024 15:11:36 -0700 Subject: [PATCH] Update http and hyper deps --- Cargo.toml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f28416c9..2c3e7d32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,8 +25,8 @@ futures-util = "0.3.28" hex = "0.4.3" hmac = "0.12.1" home = "0.5.9" -http = "0.2.9" -hyper = { version = "0.14.27", features = ["full"] } +http = "1.1.0" +hyper = { version = "1.3", features = ["full"] } lazy_static = "1.4.0" log = "0.4.20" md5 = "0.7.0" @@ -35,6 +35,7 @@ os_info = "3.7.0" percent-encoding = "2.3.0" rand = { version = "0.8.5", features = ["small_rng"] } regex = "1.9.4" +reqwest = { version = "0.12.5", features = ["native-tls", "blocking", "rustls-tls", "stream"] } serde = { version = "1.0.188", features = ["derive"] } serde_json = "1.0.105" sha2 = "0.10.7" @@ -44,9 +45,6 @@ tokio-util = { version = "0.7.8", features = ["io"] } urlencoding = "2.1.3" xmltree = "0.10.3" -[dependencies.reqwest] -version = "0.11.20" -features = ["native-tls", "blocking", "rustls-tls", "stream"] [dev-dependencies] async-std = { version = "1.12.0", features = ["attributes", "tokio1"] }