diff --git a/actix-connect/CHANGES.md b/actix-connect/CHANGES.md index 6f18b5b4..d82b62a9 100644 --- a/actix-connect/CHANGES.md +++ b/actix-connect/CHANGES.md @@ -2,6 +2,9 @@ ## Unreleased - 2020-xx-xx +### Changed + +* Bumped `rustls` to `0.19` ## 2.0.0 - 2020-09-02 - No significant changes from `2.0.0-alpha.4`. diff --git a/actix-connect/Cargo.toml b/actix-connect/Cargo.toml index 233195c5..163b2420 100644 --- a/actix-connect/Cargo.toml +++ b/actix-connect/Cargo.toml @@ -49,7 +49,7 @@ open-ssl = { package = "openssl", version = "0.10", optional = true } tokio-openssl = { version = "0.4.0", optional = true } # rustls -rust-tls = { package = "rustls", version = "0.18.0", optional = true } +rust-tls = { package = "rustls", version = "0.19.0", optional = true } tokio-rustls = { version = "0.14.0", optional = true } webpki = { version = "0.21", optional = true } diff --git a/actix-tls/CHANGES.md b/actix-tls/CHANGES.md index 592b96b0..dcd5237d 100644 --- a/actix-tls/CHANGES.md +++ b/actix-tls/CHANGES.md @@ -2,6 +2,9 @@ ## Unreleased - 2020-xx-xx +### Changed + +* Bumped `rustls` to `0.19` ## 2.0.0 - 2020-09-03 * `nativetls::NativeTlsAcceptor` is renamed to `nativetls::Acceptor`. diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 801f6144..f26df0a7 100644 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -46,7 +46,7 @@ open-ssl = { package = "openssl", version = "0.10", optional = true } tokio-openssl = { version = "0.4.0", optional = true } # rustls -rust-tls = { package = "rustls", version = "0.18.0", optional = true } +rust-tls = { package = "rustls", version = "0.19.0", optional = true } webpki = { version = "0.21", optional = true } webpki-roots = { version = "0.20", optional = true } tokio-rustls = { version = "0.14.0", optional = true }