-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since XML-rs is for the time being unmaintained[^1], and have been marked as such in RUSTSET[^2]. I have made ported the XML parsing to quick-xml. [^1]: netvl/xml-rs#221 [^2]: https://rustsec.org/advisories/RUSTSEC-2022-0048
- Loading branch information
1 parent
9803e32
commit 3ea2434
Showing
3 changed files
with
152 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
#[macro_use] | ||
extern crate quote; | ||
|
||
extern crate xml; | ||
extern crate quick_xml; | ||
|
||
mod binder; | ||
mod parser; | ||
|
Oops, something went wrong.