1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 21:51:06 +01:00

re-export openssl connector builder (#429)

This commit is contained in:
Rob Ede 2021-12-10 23:11:24 +00:00 committed by GitHub
parent 90f205a465
commit eb490a9125
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View File

@ -3,6 +3,11 @@
## Unreleased - 2021-xx-xx
## 3.0.0-rc.2 - 2021-12-10
* Re-export `openssl::SslConnectorBuilder` in `connect::openssl::reexports`. [#???]
[#???]: https://github.com/actix/actix-net/pull/???
## 3.0.0-rc.1 - 2021-11-29
### Added
* Derive `Debug` for `connect::Connection`. [#422]

View File

@ -1,6 +1,6 @@
[package]
name = "actix-tls"
version = "3.0.0-rc.1"
version = "3.0.0-rc.2"
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Rob Ede <robjtede@icloud.com>",

View File

@ -22,7 +22,9 @@ use crate::connect::{Connection, Host};
pub mod reexports {
//! Re-exports from `openssl` and `tokio-openssl` that are useful for connectors.
pub use openssl::ssl::{Error, HandshakeError, SslConnector, SslMethod};
pub use openssl::ssl::{
Error, HandshakeError, SslConnector, SslConnectorBuilder, SslMethod,
};
pub use tokio_openssl::SslStream as AsyncSslStream;
}