diff --git a/actix-connect/CHANGES.md b/actix-connect/CHANGES.md index 7a230fe9..d921acac 100644 --- a/actix-connect/CHANGES.md +++ b/actix-connect/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## [unreleased] + +### Changed + +* Update `rustls` dependency to 0.18 +* Update `tokio-rustls` dependency to 0.14 + ## [2.0.0-alpha.3] - 2020-05-08 ### Fixed diff --git a/actix-connect/Cargo.toml b/actix-connect/Cargo.toml index 87fc2ece..617421b4 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.17.0", package = "rustls", optional = true } -tokio-rustls = { version = "0.13.0", optional = true } +rust-tls = { version = "0.18.0", package = "rustls", optional = true } +tokio-rustls = { version = "0.14.0", optional = true } webpki = { version = "0.21", optional = true } [dev-dependencies] diff --git a/actix-tls/CHANGES.md b/actix-tls/CHANGES.md index 404b9cf7..b0d9ad28 100644 --- a/actix-tls/CHANGES.md +++ b/actix-tls/CHANGES.md @@ -1,5 +1,13 @@ # Changes +## [unreleased] + +### Changed + +* Update `rustls` dependency to 0.18 +* Update `tokio-rustls` dependency to 0.14 +* Update `webpki-roots` dependency to 0.20 + ## [2.0.0-alpha.1] - 2020-03-03 ### Changed diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 3573eebb..99be200d 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.17.0", package = "rustls", optional = true } +rust-tls = { version = "0.18.0", package = "rustls", optional = true } webpki = { version = "0.21", optional = true } -webpki-roots = { version = "0.19", optional = true } -tokio-rustls = { version = "0.13.0", optional = true } +webpki-roots = { version = "0.20", optional = true } +tokio-rustls = { version = "0.14.0", optional = true } # native-tls native-tls = { version="0.2", optional = true }