From b9567359fd82d82c12bce74547bec3fc8dada1fc Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Sun, 1 Mar 2020 11:59:00 +0900 Subject: [PATCH] actix-tls: Update `rustls` and `tokio-rustls` --- actix-tls/CHANGES.md | 7 +++++++ actix-tls/Cargo.toml | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/actix-tls/CHANGES.md b/actix-tls/CHANGES.md index 15c0bf76..e11fc40e 100644 --- a/actix-tls/CHANGES.md +++ b/actix-tls/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## [1.0.1] - 2020-03-01 + +### Changed + +* Update `rustls` dependency to 0.17 +* Update `tokio-rustls` dependency to 0.13 + ## [1.0.0] - 2019-12-11 * 1.0.0 release diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 8381ba75..912fc82a 100644 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -46,10 +46,10 @@ open-ssl = { version="0.10", package = "openssl", optional = true } tokio-openssl = { version = "0.4.0", optional = true } # rustls -rust-tls = { version = "0.16.0", package = "rustls", optional = true } +rust-tls = { version = "0.17.0", package = "rustls", optional = true } webpki = { version = "0.21", optional = true } webpki-roots = { version = "0.17", optional = true } -tokio-rustls = { version = "0.12.0", optional = true } +tokio-rustls = { version = "0.13.0", optional = true } # native-tls native-tls = { version="0.2", optional = true }