mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Enable rustls/std feature (#494)
This commit is contained in:
parent
48702413f3
commit
5fd9d7ce90
15 changed files with 35 additions and 31 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue