1 unstable release

0.1.0 Aug 12, 2019

#1007 in Algorithms

Download history 10880/week @ 2023-12-09 11841/week @ 2023-12-16 8162/week @ 2023-12-23 12273/week @ 2023-12-30 14545/week @ 2024-01-06 18026/week @ 2024-01-13 20553/week @ 2024-01-20 20976/week @ 2024-01-27 21857/week @ 2024-02-03 20843/week @ 2024-02-10 24365/week @ 2024-02-17 20098/week @ 2024-02-24 18321/week @ 2024-03-02 21523/week @ 2024-03-09 21648/week @ 2024-03-16 19677/week @ 2024-03-23

84,305 downloads per month
Used in 196 crates (8 directly)

MIT license

19KB
320 lines

xmlwriter

Build Status Crates.io Documentation

A simple, streaming, partially-validating XML writer that writes XML data into an internal buffer.

Features

  • A simple, bare-minimum, panic-based API.
  • Non-allocating API. All methods are accepting either fmt::Display or fmt::Arguments.
  • Nodes auto-closing.

Example

use xmlwriter::*;

let opt = Options {
    use_single_quote: true,
    ..Options::default()
};

let mut w = XmlWriter::new(opt);
w.start_element("svg");
w.write_attribute("xmlns", "http://www.w3.org/2000/svg");
w.write_attribute_fmt("viewBox", format_args!("{} {} {} {}", 0, 0, 128, 128));
w.start_element("text");
// We can write any object that implements `fmt::Display`.
w.write_attribute("x", &10);
w.write_attribute("y", &20);
w.write_text_fmt(format_args!("length is {}", 5));

assert_eq!(w.end_document(),
"<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'>
    <text x='10' y='20'>
        length is 5
    </text>
</svg>
");

License

MIT

No runtime deps