Skip to content

Commit

Permalink
re-export openssl connector builder (#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede authored Dec 10, 2021
1 parent 90f205a commit eb490a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions actix-tls/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion actix-tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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>",
Expand Down
4 changes: 3 additions & 1 deletion actix-tls/src/connect/openssl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit eb490a9

Please sign in to comment.