1
2
3
4
5
6
7
8
9
//! # XmlWriter
//! This crate is to write xml in the probably most efficient way, by writing directly to the stream,
//! without any DOM or other intermediate structures. It strives to be zero allocation.

#![deny(missing_docs)]

mod xml_writer;

pub use xml_writer::XmlWriter;