tokio_xmpp: introduce xmlstream module

This module provides XSO-based parsing, proper typestates and will
soon replace the proto module.
This commit is contained in:
Jonas Schäfer 2024-08-07 15:52:55 +02:00
commit c723897326
8 changed files with 1351 additions and 2 deletions

View file

@ -50,6 +50,7 @@ mod event;
pub use event::Event;
pub mod connect;
pub mod proto;
pub mod xmlstream;
mod client;
pub use client::Client;