We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, We're using a library to parse XML (from clang-format output) named serde-xml-rs. I found we can easily migrate to quick_xml instead.
This idea aims to resolve
quick_xml
// serde-xml-rs vs serialize feature test bench_serde_quick_xml ... bench: 1,181,198 ns/iter (+/- 138,290) test bench_serde_xml_rs ... bench: 15,039,564 ns/iter (+/- 783,485)
serde_xml_rs
The text was updated successfully, but these errors were encountered:
Oh, this is ticket #100!
#100
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Currently, We're using a library to parse XML (from clang-format output) named serde-xml-rs. I found we can easily migrate to quick_xml instead.
Why?
This idea aims to resolve
quick_xml
is a faster XML parser:quick_xml
is actively developed, whereasserde_xml_rs
has not seen attention for over 2 years at this point.The text was updated successfully, but these errors were encountered: