Crates.io | lazyxml |
lib.rs | lazyxml |
version | 0.0.3 |
source | src |
created_at | 2020-11-20 03:04:54.953462 |
updated_at | 2020-11-24 04:59:16.010618 |
description | it's like xml parsing, but bad |
homepage | |
repository | https://github.com/notviri/lazyxml/ |
max_upload_size | |
id | 314216 |
size | 17,986 |
Lightweight, lazy, and ignorant XML parsing. Happily looks past completely invalid data, as long as it logically parses. You should almost definitely not use this, unless:
XMLDocument
class, which is what this crate's purpose for existing is.// Example code here.
You might ask what counts as valid, if you aren't here specifically for reason #1 listed above. Here's a valid XML snippet:
<Name tag="1" a"'"''"'""'''32'34fdhfjsklflsjeje2!!!!!="e"tag2='
'/>
I should probably document why this is OK in case anyone outside of reason #1 becomes interested.