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]