diff --git a/tokio-xmpp/ChangeLog b/tokio-xmpp/ChangeLog index e8664729..e3c10152 100644 --- a/tokio-xmpp/ChangeLog +++ b/tokio-xmpp/ChangeLog @@ -28,6 +28,8 @@ XXXX-YY-ZZ RELEASER * Added: - Support for sending IQ requests while tracking their responses in a Future. + - `rustls` is now re-exported if it is enabled, to allow applications to + set the default crypto provider if needed. (!581) * Changes: - On Linux, once the TLS session is established, we can delegate the actual encryption and decryption to the kernel, which in turn can diff --git a/tokio-xmpp/src/lib.rs b/tokio-xmpp/src/lib.rs index cd9f3aec..5f2dbe1d 100644 --- a/tokio-xmpp/src/lib.rs +++ b/tokio-xmpp/src/lib.rs @@ -51,6 +51,9 @@ extern crate alloc; pub use parsers::{jid, minidom}; pub use xmpp_parsers as parsers; +#[cfg(feature = "tls-rust")] +pub use tokio_rustls::rustls; + mod client; #[cfg(feature = "insecure-tcp")] mod component;