From 54224618b2d804029b5638a6d7fbee3b78465c7e Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Wed, 4 May 2022 09:33:14 -0700 Subject: [PATCH] Switch to upstream 'tokio-rustls'. --- core/http/Cargo.toml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/core/http/Cargo.toml b/core/http/Cargo.toml index e6a5b1fd..268bbbf3 100644 --- a/core/http/Cargo.toml +++ b/core/http/Cargo.toml @@ -31,7 +31,7 @@ http = "0.2" time = { version = "0.3", features = ["formatting", "macros"] } indexmap = { version = "1.5.2", features = ["std"] } rustls = { version = "0.20", optional = true } -# tokio-rustls = { version = "0.23.0", optional = true } +tokio-rustls = { version = "0.23.4", optional = true } rustls-pemfile = { version = "1", optional = true } tokio = { version = "1.6.1", features = ["net", "sync", "time"] } log = "0.4" @@ -46,11 +46,6 @@ cookie = { version = "0.16.0", features = ["percent-encode", "secure"] } state = "0.5.3" futures = { version = "0.3", default-features = false } -[dependencies.tokio-rustls] -git = "https://github.com/SergioBenitez/tokio-tls/" -branch = "stream-from-accept" -optional = true - [dependencies.x509-parser] version = "0.13" optional = true