woxml/
lib.rs

1// Copyright © 2025 Stephan Kunz
2
3//! The XmlWriter writes xml in an efficient way, by writing directly to the provided stream,
4//! without any DOM or other intermediate structures. It strives to be zero allocation.
5
6#![doc = include_str!("../README.md")]
7#![deny(missing_docs)]
8#![deny(unsafe_code)]
9
10mod woxml;
11
12pub use woxml::XmlWriter;