From d312391239aa15eaceaf8d32ed9997cb747e54d8 Mon Sep 17 00:00:00 2001 From: Joseph Birr-Pixton Date: Fri, 13 Jan 2023 10:33:34 +0000 Subject: [PATCH] Move to rustls-webpki fork --- README.md | 4 +++- rustls/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f1280a10..b0ef7b64 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,9 @@ If you'd like to help out, please see [CONTRIBUTING.md](CONTRIBUTING.md). - Planned: removal of unused signature verification schemes at link-time. - Planned: removal of unused protocol versions at link-time. * Next release: 0.21.0 (2023-xx-xx) - - (...) + - Support for connecting to peers named with IP addresses. This means + rustls now depends on a fork of webpki - `rustls-webpki` - with a suitably + extended API. * 0.20.8 (2023-01-12) - Yield an error from `ConnectionCommon::read_tls()` if buffers are full. Both a full deframer buffer and a full incoming plaintext buffer will diff --git a/rustls/Cargo.toml b/rustls/Cargo.toml index 5285a2c4..b69a709b 100644 --- a/rustls/Cargo.toml +++ b/rustls/Cargo.toml @@ -19,7 +19,7 @@ rustversion = { version = "1.0.6", optional = true } log = { version = "0.4.4", optional = true } ring = "0.16.20" sct = "0.7.0" -webpki = { version = "0.22.0", features = ["alloc", "std"] } +webpki = { package = "rustls-webpki", version = "0.100.0-alpha.2", features = ["alloc", "std"] } [features] default = ["logging", "tls12"]