mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-24 03:42:59 +01:00
re-export openssl connector builder (#429)
This commit is contained in:
parent
90f205a465
commit
eb490a9125
@ -3,6 +3,11 @@
|
|||||||
## Unreleased - 2021-xx-xx
|
## 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
|
## 3.0.0-rc.1 - 2021-11-29
|
||||||
### Added
|
### Added
|
||||||
* Derive `Debug` for `connect::Connection`. [#422]
|
* Derive `Debug` for `connect::Connection`. [#422]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-tls"
|
name = "actix-tls"
|
||||||
version = "3.0.0-rc.1"
|
version = "3.0.0-rc.2"
|
||||||
authors = [
|
authors = [
|
||||||
"Nikolay Kim <fafhrd91@gmail.com>",
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
||||||
"Rob Ede <robjtede@icloud.com>",
|
"Rob Ede <robjtede@icloud.com>",
|
||||||
|
@ -22,7 +22,9 @@ use crate::connect::{Connection, Host};
|
|||||||
pub mod reexports {
|
pub mod reexports {
|
||||||
//! Re-exports from `openssl` and `tokio-openssl` that are useful for connectors.
|
//! 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;
|
pub use tokio_openssl::SslStream as AsyncSslStream;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user