txml

Crates.iotxml
lib.rstxml
version0.2.0
created_at2020-07-13 19:35:59.296645+00
updated_at2025-06-10 18:47:28.501663+00
descriptionSmall no_std non-conforming XML parser
homepage
repositoryhttps://github.com/tadeokondrak/txml
max_upload_size
id264801
size43,661
Tadeo Kondrak (tadeokondrak)

documentation

README

txml

An XML parser. It's about ~200 SLOC but it:

  • Doesn't parse DTDs and therefore doesn't support custom entities
  • Doesn't validate DTDs, of course
  • Doesn't allow for streaming - you have to read the whole file at once
  • Doesn't reject all non-well-formed documents
  • Doesn't have any dependencies
  • Doesn't allocate, which is nice

This parser is not meant for any usecase where you're not certain that the document is well-formed, because it reports errors by simply ending the event stream early.

This parser may be useful for parsing machine-readable specifications that use XML such as Wayland and Vulkan.

License

Licensed under either of

at your option.

Contribution

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

Commit count: 7

cargo fmt