README.md

 1xso -- serde-like parsing for XML
 2=================================
 3
 4What’s this?
 5------------
 6
 7This crate provides the traits for parsing XML data into Rust structs, and
 8vice versa. You can do things like:
 9
10```rust
11#[derive(FromXml, AsXml)]
12#[xml(namespace = "urn:example", name = "element")]
13pub struct Foo;
14```
15
16For more information, see
17[its documentation on docs.rs](https://docs.rs/xso/latest/xso/) for the latest
18release or
19[the documentation for the main branch on our servers](https://docs.xmpp.rs/main/xso/).
20
21What license is it under?
22-------------------------
23
24MPL-2.0 or later, see the `LICENSE` file.