Move XmppCodec and XmppStream to proto module

This commit is contained in:
xmppftw xmppftw 2024-08-06 17:00:53 +02:00
commit fde4c2b640
17 changed files with 135 additions and 148 deletions

View file

@ -20,14 +20,11 @@ compile_error!(
"when starttls feature enabled one of tls-native and tls-rust features must be enabled."
);
mod stream_start;
mod xmpp_codec;
pub use crate::xmpp_codec::{Packet, XmppCodec};
mod event;
pub use event::Event;
mod client;
pub mod connect;
pub mod xmpp_stream;
pub mod proto;
pub use client::async_client::{Client as AsyncClient, Config as AsyncConfig};
mod component;