xmpp-rs/xso/README.md
2024-07-24 16:27:53 +02:00

24 lines
617 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

xso -- serde-like parsing for XML
=================================
Whats this?
------------
This crate provides the traits for parsing XML data into Rust structs, and
vice versa. You can do things like:
```rust
#[derive(FromXml, AsXml)]
#[xml(namespace = "urn:example", name = "element")]
pub struct Foo;
```
For more information, see
[its documentation on docs.rs](https://docs.rs/xso/latest/xso/) for the latest
release or
[the documentation for the main branch on our servers](https://docs.xmpp.rs/main/xso/).
What license is it under?
-------------------------
MPL-2.0 or later, see the `LICENSE` file.