From faf80b5c45f42eac3cd2c66f247570545dc9c839 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Tue, 26 Sep 2023 17:49:40 -0300 Subject: [PATCH] onvif: Cargo: Update reqwest to use hyper MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The issue was fixed on the latest version Signed-off-by: Patrick José Pereira --- onvif/Cargo.toml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/onvif/Cargo.toml b/onvif/Cargo.toml index fbc742d..f03f615 100644 --- a/onvif/Cargo.toml +++ b/onvif/Cargo.toml @@ -6,11 +6,6 @@ edition = "2018" license = "MIT" [features] -default = ["tls"] -# hyper-rustls does not support IP hosts (like https://192.168.1.2) which are -# very common for IP cameras. So we can use only native-tls for now. -# https://github.com/ctz/hyper-rustls/issues/56 -tls = ["reqwest/native-tls"] [dependencies] async-recursion = "0.3.1" @@ -21,7 +16,7 @@ chrono = "0.4.19" digest_auth = "0.3.0" futures-core = "0.3.8" num-bigint = "0.4.2" -reqwest = { version = "0.11.0", default-features = false } +reqwest = { version = "0.11.20", default-features = false } schema = { version = "0.1.0", path = "../schema", default-features = false, features = ["analytics", "devicemgmt", "event", "media", "ptz"] } sha1 = "0.6.0" thiserror = "1.0"