Enable rustls/std feature (#494)

This commit is contained in:
Nikolay Kim 2024-12-30 18:40:31 +05:00 committed by GitHub
parent 48702413f3
commit 5fd9d7ce90
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 35 additions and 31 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [2.4.0] - 2024-12-30
* Enable rustls/std feature
## [2.3.0] - 2024-11-04
* Use updated Service trait

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-tls"
version = "2.3.0"
version = "2.4.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "An implementation of SSL streams for ntex backed by OpenSSL"
keywords = ["network", "framework", "async", "futures"]
@ -22,14 +22,14 @@ default = []
openssl = ["tls_openssl"]
# rustls support
rustls = ["tls_rust"]
rustls = ["tls_rust", "tls_rust/std"]
rustls-ring = ["tls_rust", "tls_rust/ring", "tls_rust/std"]
[dependencies]
ntex-bytes = "0.1"
ntex-io = "2.3"
ntex-util = "2.5"
ntex-service = "3.3"
ntex-service = "3.4"
ntex-net = "2"
log = "0.4"

View file

@ -24,7 +24,7 @@ pub struct PeerCertChain<'a>(pub Vec<CertificateDer<'a>>);
pub(crate) struct Wrapper<'a, 'b>(&'a WriteBuf<'b>);
impl<'a, 'b> io::Read for Wrapper<'a, 'b> {
impl io::Read for Wrapper<'_, '_> {
fn read(&mut self, dst: &mut [u8]) -> io::Result<usize> {
self.0.with_read_buf(|buf| {
buf.with_src(|buf| {
@ -41,7 +41,7 @@ impl<'a, 'b> io::Read for Wrapper<'a, 'b> {
}
}
impl<'a, 'b> io::Write for Wrapper<'a, 'b> {
impl io::Write for Wrapper<'_, '_> {
fn write(&mut self, src: &[u8]) -> io::Result<usize> {
self.0.with_dst(|buf| buf.extend_from_slice(src));
Ok(src.len())