Skip to content

Commit

Permalink
Merge pull request #109 from patrickelectric/fix-tls
Browse files Browse the repository at this point in the history
onvif: Cargo: Update reqwest to use hyper
  • Loading branch information
DmitrySamoylov authored Sep 28, 2023
2 parents d9030e6 + faf80b5 commit c41264d
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions onvif/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit c41264d

Please sign in to comment.