Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
resolver = "2"
members = ["xmlity", "xmlity-derive", "xmlity-quick-xml"]
members = ["xmlity", "xmlity-derive", "xmlity-quick-xml", "xmlity-xml-rs"]

[workspace.package]
version = "0.0.3"
Expand Down
1 change: 1 addition & 0 deletions xmlity-xml-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Changelog
23 changes: 23 additions & 0 deletions xmlity-xml-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[package]
name = "xmlity-xml-rs"
description = "XMLity implementation of xml-rs."
version = "0.0.2"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
documentation.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
exclude.workspace = true

[dependencies]
thiserror.workspace = true
xmlity.workspace = true
xml-rs = "0.8.26"


[dev-dependencies]
pretty_assertions.workspace = true
rstest.workspace = true
xmlity = { workspace = true, features = ["derive"] }
27 changes: 27 additions & 0 deletions xmlity-xml-rs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# # XMLity xml-rs   [![Build Status]][actions] [![Latest Version]][crates.io] [![Latest Docs]][docs.rs] [![xmlity msrv]][Rust 1.82]

[Build Status]: https://img.shields.io/github/actions/workflow/status/lukasfri/xmlity/rust.yaml?branch=main
[actions]: https://github.com/lukasfri/xmlity/actions?query=branch%3Amain
[Latest Version]: https://img.shields.io/crates/v/xmlity-quick-xml.svg
[crates.io]: https://crates.io/crates/xmlity-quick-xml
[Latest Docs]: https://img.shields.io/badge/docs.rs-Latest-bbbbbb.svg
[docs.rs]: https://docs.rs/xmlity-quick-xml/latest/xmlity_quick_xml
[xmlity msrv]: https://img.shields.io/badge/rustc-1.82.0+-ab6000.svg
[Rust 1.82]: https://blog.rust-lang.org/2023/06/01/Rust-1.82.0.html

This crate contains the implementation of the [`xml-rs`] backend for XMLity. It is the intention to keep this crate up to date with the latest version of `xml-rs` and `xmlity`.

## License

<sup>
Licensed under either of <a href="LICENSE-APACHE">Apache License, Version
2.0</a> or <a href="LICENSE-MIT">MIT license</a> at your option.
</sup>

<br>

<sub>
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in Serde by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.
</sub>
Loading
Loading