Move to rustls-webpki fork

This commit is contained in:
Joseph Birr-Pixton 2023-01-13 10:33:34 +00:00
parent ad403b6677
commit d312391239
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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"]