mirror of https://github.com/fafhrd91/actix-net
Fix use of wrong tokio rustls package
This commit is contained in:
parent
6f50d110bf
commit
610ba89670
|
@ -26,7 +26,7 @@ use crate::connect::{Connection, Host};
|
||||||
pub mod reexports {
|
pub mod reexports {
|
||||||
//! Re-exports from the `rustls` v0.23 ecosystem that are useful for connectors.
|
//! Re-exports from the `rustls` v0.23 ecosystem that are useful for connectors.
|
||||||
|
|
||||||
pub use tokio_rustls_025::{client::TlsStream as AsyncTlsStream, rustls::ClientConfig};
|
pub use tokio_rustls_026::{client::TlsStream as AsyncTlsStream, rustls::ClientConfig};
|
||||||
#[cfg(feature = "rustls-0_23-webpki-roots")]
|
#[cfg(feature = "rustls-0_23-webpki-roots")]
|
||||||
pub use webpki_roots_026::TLS_SERVER_ROOTS;
|
pub use webpki_roots_026::TLS_SERVER_ROOTS;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue