chiark / gitweb /
Drop our explicit hyper-tls dependency
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 1 Feb 2025 12:52:00 +0000 (12:52 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 2 Feb 2025 13:59:50 +0000 (13:59 +0000)
This is now handled by reqwest.

Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Cargo.lock
Cargo.lock.minimal
Cargo.toml
debian/control
src/prelude.rs

index 0ba34ab488942b047004861e980962c022ec9aeb..fac459f68e31800b3d8e295117536d22b9a9d274 100644 (file)
@@ -625,7 +625,6 @@ dependencies = [
  "http-body 1.0.1",
  "http-body-util",
  "hyper 0.14.32",
- "hyper-tls 0.5.0",
  "indenter",
  "ipnet",
  "itertools",
@@ -807,19 +806,6 @@ dependencies = [
  "tower-service",
 ]
 
-[[package]]
-name = "hyper-tls"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
-dependencies = [
- "bytes",
- "hyper 0.14.32",
- "native-tls",
- "tokio",
- "tokio-native-tls",
-]
-
 [[package]]
 name = "hyper-tls"
 version = "0.6.0"
@@ -1371,7 +1357,7 @@ dependencies = [
  "http-body-util",
  "hyper 1.6.0",
  "hyper-rustls",
- "hyper-tls 0.6.0",
+ "hyper-tls",
  "hyper-util",
  "ipnet",
  "js-sys",
index 643bc0a39e2883c0f83782b87870fb076041d252..fa6acbf1cdd85f8e3e66878e0b8dcd9fc17ce6ac 100644 (file)
@@ -675,7 +675,6 @@ dependencies = [
  "http-body 1.0.1",
  "http-body-util",
  "hyper 0.14.7",
- "hyper-tls 0.5.0",
  "indenter",
  "ipnet",
  "itertools",
@@ -855,19 +854,6 @@ dependencies = [
  "tower-service",
 ]
 
-[[package]]
-name = "hyper-tls"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
-dependencies = [
- "bytes 1.0.0",
- "hyper 0.14.7",
- "native-tls",
- "tokio",
- "tokio-native-tls",
-]
-
 [[package]]
 name = "hyper-tls"
 version = "0.6.0"
@@ -1437,7 +1423,7 @@ dependencies = [
  "http-body-util",
  "hyper 1.1.0",
  "hyper-rustls",
- "hyper-tls 0.6.0",
+ "hyper-tls",
  "hyper-util",
  "ipnet",
  "js-sys",
index 11e2be9d3967fea8f673a7ccd1f02785e7a62954..88b97d8d1829d99f9fbc6ff75522f7fc56868c89 100644 (file)
@@ -43,7 +43,6 @@ fehler = "1"
 futures = "0.3"
 heck = ">=0.4, <0.6"
 hyper = { version = "0.14.7", features = ["full"] }
-hyper-tls = "0.5"
 indenter = "0.3"
 ipnet = "2.3"
 itertools = ">=0.10.1, <0.15"
index d665a618fa3e4a827bac96a6bcacbfb41bc9a049..1294e6a88c0abbf460d2e2b57ec1b3bba57c4084 100644 (file)
@@ -26,7 +26,6 @@ Build-Depends: debhelper (>= 12),
     librust-http-body-dev (>= 1.0.1~) <!upstream-cargo>,
     librust-http-body-util-dev (>= 0.1.2~) <!upstream-cargo>,
     librust-hyper-dev (>= 0.14.7~) <!upstream-cargo>,
-    librust-hyper-tls-dev (>= 0.5~) <!upstream-cargo>,
     librust-indenter-dev (>= 0.3~) <!upstream-cargo>,
     librust-ipnet-dev (>= 2.3~) <!upstream-cargo>,
     librust-itertools-dev (>= 0.10.1~) <!upstream-cargo>,
index a0d5a93886b1b73ba67ff1111ac764a958486c80..d1574eec4d7683a48dc622c3cefa9fc2bdbd3b2b 100644 (file)
@@ -34,7 +34,6 @@ pub use fehler::{throw, throws};
 pub use futures::{poll, future, FutureExt, StreamExt, TryStreamExt};
 pub use hyper::body::{Bytes, Buf, HttpBody};
 pub use hyper::{Method};
-pub use hyper_tls::HttpsConnector;
 pub use ipnet::IpNet;
 pub use itertools::{iproduct, izip, Itertools};
 pub use lazy_regex::{regex_captures, regex_is_match, regex_replace_all};