From 7dbc0264b1e8eeaf99a0197693f132e852133a6d Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Sun, 1 Mar 2020 11:58:48 +0900 Subject: [PATCH] actix-connect: Update `rustls` and `tokio-rustls` --- actix-connect/CHANGES.md | 7 +++++++ actix-connect/Cargo.toml | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/actix-connect/CHANGES.md b/actix-connect/CHANGES.md index f04b4893..5f0dd2ae 100644 --- a/actix-connect/CHANGES.md +++ b/actix-connect/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## [1.0.3] - 2020-03-01 + +### Changed + +* Update `rustls` dependency to 0.17 +* Update `tokio-rustls` dependency to 0.13 + ## [1.0.2] - 2020-01-15 * Fix actix-service 1.0.3 compatibility diff --git a/actix-connect/Cargo.toml b/actix-connect/Cargo.toml index 385ea984..8e91a138 100644 --- a/actix-connect/Cargo.toml +++ b/actix-connect/Cargo.toml @@ -48,8 +48,8 @@ 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 } -tokio-rustls = { version = "0.12.0", optional = true } +rust-tls = { version = "0.17.0", package = "rustls", optional = true } +tokio-rustls = { version = "0.13.0", optional = true } webpki = { version = "0.21", optional = true } [dev-dependencies]