rusty_xml
rusty_xml is a ground-up, pure-Rust remake of libxml2: well-formed XML 1.0 parse, arena DOM, SAX2, pull reader, writer/save, XPath 1.0, DTD, C14N, HTML, and working subsets of RelaxNG / XSD / Schematron.
#![forbid(unsafe_code)]on every published crate, no C, nolibxml2-sys, no copyleft. Defaults areXML_PARSE_NONET | XML_PARSE_NO_XXE— the safe posture libxml2's own README says the C library does not have.
Part of Remade With Rust by Mata Network — the XML toolkit for the stack that already ships rusty_zstd, rusty_h264, and remade_ffmpeg_rs. Jump to the ecosystem ↓
The headline
A pure-safe-Rust XML 1.0 toolkit that is a reimplementation, not a
wrapper, with libxml2 function names as #[doc(alias)] and safe defaults
C historically got wrong:
- Parse: UTF-8 well-formed documents, 15 built-in 8-bit encodings (no
iconv), push (
xmlParseChunk), IO callbacks, local OASIS catalogs. SAX traces are gated line-for-line against pinnedxmllint --sax. - Tree / save / writer / reader: arena DOM,
xmlsave(includingXML_SAVE_NO_EMPTY/NO_DECL),xmlTextWriter,xmlTextReader. Empty elements are one readerElement, no extraEndElement.parse(write(parse(x)))is a standing gate. - XPath 1.0 compile + eval;
rxmlint --xpathprints xmllint form. - Validate / canonicalize: DTD internal subset + default attributes,
xmlValidateDocument, C14N 1.0 and exclusive, XInclude via a caller loader. - HTML (
HTMLparser.cgrammar, implied html/head/body) and working subsets of RelaxNG, XML Schema, and Schematron. - CLI is
rxmlint, neverxmllint. Same flag language so a bench script can swap argv[0]. - The C oracle is an external process. We never link libxml2. Pin:
libxml2 v2.15.3 (
oracle/PIN).
| libxml2 (C) | rusty_xml (Rust) | |
|---|---|---|
| C/C++ in the dependency tree | all of it | none — no libxml2-sys, no iconv, no zlib-sys |
unsafe in the published crates |
extensive | 0 — #![forbid(unsafe_code)] |
| License | MIT | MIT OR Apache-2.0 |
| Defaults on untrusted input | libxml2 README: not recommended | NONET | NO_XXE, always |
| CLI name | xmllint |
rxmlint (does not shadow C) |
| Network entity loads | historically on | off unless you pass flags (and the parser still ORs NONET) |
Performance — faster than libxml2
Paired board against pinned libxml2 v2.15.3 xmllint. Pinned to one core
(not core 0), High priority, CPU time, arms ABBA-interleaved, N=20
pairs, C-vs-C null arm per row. us/C < 1 means rusty_xml is faster. Raw
rows and the full method line: bench/SIDE-BY-SIDE.md.
| workload (parse to DOM, discard) | rusty_xml | libxml2 | us/C | wins |
|---|---|---|---|---|
big-attr.xml — 627 KB, 48k attributes |
83.3 MB/s | 37.2 MB/s | 0.45× | 20/20, z = +4.47 |
big-300k.xml — 308 KB, text-heavy |
125.6 MB/s | 78.5 MB/s | 0.63× | 20/20, z = +4.47 |
big-1m.xml — 1.27 MB, real content |
115.7 MB/s | 74.6 MB/s | 0.64× | 20/20, z = +4.47 |
1.6× to 2.2× faster than the C library, on every file, in every pair.
Two numbers, because one alone would mislead. The table is
as shipped: rxmlint links rusty_alloc
(pure-Rust mimalloc) and xmllint uses the system allocator — that is what you
actually run. Same allocator, both on the system allocator, the parser
alone: big-attr 0.80×, big-300k 1.07×. Roughly half the margin is
the allocator, and C could adopt one too. Also: C runs xmlCtxtReadFile per
--repeat (the Windows pin has no mmap) while we do one fs::read then
xml_read_memory — about 1% at these sizes, but it inflates C on small files,
so the large rows are the honest result. Flags differ (C defaults to
XML_PARSE_COMPACT \| XML_PARSE_BIG_LINES; we force NONET \| NO_XXE). This
is CLI-vs-CLI, not a kernel A/B. Correctness is gated byte-identical against
the same pinned oracle throughout.
Conformance — where we actually stand
Speed is the easy half. Here is the hard half, measured against the W3C XML Conformance Test Suite rather than against our own corpus, with the pinned C build scored on the identical cases:
| rusty_xml 0.4.0 | libxml2 2.15.3 | |
|---|---|---|
| Total (2039 scored cases) | 79.9% (1630) | 79.9% (1629) |
| valid documents accepted (601) | 98.7% | 100.0% |
| invalid documents rejected (175) | 80.6% | 53.7% |
well-formedness (not-wf, 1263) |
70.9% | 74.0% |
Level with the thing we are replacing, by one case. We are meaningfully ahead on rejecting invalid documents and still behind on rejecting malformed ones; the remaining not-well-formed failures are concentrated in name-character classification, where libxml2 and the suite disagree about which edition of XML 1.0 is being tested.
0.2.0 never ran the suite at all. The first run, in 0.3.0, crashed before it scored a single case -- a 32 GB allocation reachable from thirty-two bytes of DTD -- and then scored 59.1%. Everything between there and here came from reading failures rather than guessing: an internal subset parser that was a scanner rather than a parser, four literals that were never character-validated, a validator whose ID branch said "uniqueness checked loosely" and meant not at all, and an entity whose replacement text was inserted as escaped text instead of the markup it was.
Run it yourself — the suite is fetched, never vendored:
What we do gate hard, and what those numbers cost nothing:
- 62 of 64 byte-identical comparisons against pinned
xmllintover 16 corpora x {plain,--format,--c14n,--exc-c14n}. The two exceptions are one deliberate divergence: we serialize the internal DTD subset verbatim where C re-serializes and reorders it. - 0
unsafein all twelve crates. - Nothing on the parse, save, format, XPath, stream or canonicalize path recurses per level of nesting, so document depth cannot exhaust the stack.
- A seeded fuzzer (
--bin fuzz) holds four invariants: no panics, chunked parsing equals whole parsing at every chunk size, and both XML and HTML round trips are fixed points.
If you need full libxml2 conformance today, use libxml2. If you need a memory-safe XML toolkit that is faster than C, has no C in its dependency tree, and tells you exactly which cases it gets wrong, this is it.
What is this?
rusty_xml is libxml2 remade in Rust. Unlike
libxml2-sys / quick-xml /
roxmltree — bindings or different grammars — there is no C in the
dependency tree here and the public names match C (xmlReadMemory →
xml_read_memory, documented with #[doc(alias)]).
libxml2's own README says it is not recommended for untrusted data. That is the defect this remake exists to close: semantic identity under matched options, safe defaults (no network, no XXE, bounded amplification).
It is a reimplementation of the algorithms, not a fork. The C sources are
neither distributed nor linked; a pinned xmllint is used only as an
external-process oracle (scripts/fetch-oracle.ps1).
cargo-deny enforces the promise: no *-sys crate, no copyleft, and no
libxml2-sys anywhere in the graph.
The Remade With Rust ecosystem
Remade With Rust is an initiative by Mata Network to rebuild essential C and C++ tools in Rust — for the memory safety, the predictable performance, and the freedom of a permissive license. Each project is a reimplementation, not a fork: same wire protocols and file formats, new code you can actually depend on.
We build the core to production grade and open-source it so the community can extend it. No copyleft. No surprises. Just the tools we rely on, made faster and safer.
| Project | What it is |
|---|---|
| 🎬 remade_ffmpeg_rs | Our FFmpeg alternative. Drop-in ffmpeg and ffprobe binaries — demux → decode → filter → encode → mux, rebuilt as composable Rust crates with zero GPL/LGPL. Apache-2.0. |
| 🧠 FFAI | Our sister project: media for AI. "The AI media toolkit, remade with rust." Embedded ASR + TTS (Mercury), OCR (Carmenta) and vision-language captioning (Argus) behind an ffmpeg-style, swap-by-name architecture — no Python, no CUDA. MIT OR Apache-2.0. |
| 🌐 Mata Network | The home page. "Stop sacrificing your privacy for convenience." Sovereign, self-hostable privacy infrastructure — wallet & identity, password manager, contact manager, and a browser extension that stops information leaking as you browse. Remade With Rust is its open-source arm. |
→ All projects: github.com/Remade-With-Rust
Install
One crate — rusty_xml — is the public facade; it re-exports parser, tree,
SAX, reader, writer, XPath, and validation. Add it with:
or in Cargo.toml:
[]
= "0.4"
MSRV is 1.85. The library never sets #[global_allocator].
The published crates (all 0.1, MIT OR Apache-2.0):
| Crate | Role | Docs |
|---|---|---|
rusty_xml |
the facade — depend on this | docs.rs |
rusty_xml-parser |
well-formed parse, encodings, push, catalogs, HTML | docs.rs |
rusty_xml-tree |
arena DOM | docs.rs |
rusty_xml-sax |
SAX2 recorder + xmllint-debug dump | docs.rs |
rusty_xml-reader |
xmlTextReader |
docs.rs |
rusty_xml-writer |
xmlsave + xmlTextWriter |
docs.rs |
rusty_xml-xpath |
XPath 1.0 | docs.rs |
rusty_xml-valid |
DTD, C14N, RelaxNG, XSD, Schematron | docs.rs |
rusty_xml-cli |
rxmlint binary |
— |
rusty_xml-alloc |
allocator seam for binaries only — the library never uses it | — |
Not published: rusty_xml-bench (oracle harness), rusty_xml-c-abi (M8 stub).
The library picks no allocator. rusty_xml-alloc pins
rusty_alloc for rxmlint; the
published library declares no #[global_allocator] and does not depend on it,
so an embedding application keeps that choice — and gets the same win for free
if it already ships rusty_alloc.
Dropping it into a downstream tool: depend on the facade. Call
xml_read_memory / xml_reader_for_memory / xml_xpath_eval. Do not add
libxml2-sys. Safe defaults are already on; you do not opt into NONET.
Quick start
use ;
XPath 1.0 on the same tree:
use ;
Pull reader:
use ;
Command-line (never installs as xmllint):
Architecture
The workspace mirrors libxml2's headers, not its build:
crates/
rusty_xml public facade ← depend on this
rusty_xml-parser parser.h — well-formed, encodings, push, catalogs, HTML
rusty_xml-tree tree.h — arena DOM
rusty_xml-sax SAX2.h — recorder + xmllint-debug dump
rusty_xml-reader xmlreader.h
rusty_xml-writer xmlsave.h + xmlwriter.h
rusty_xml-xpath xpath.h
rusty_xml-valid valid.h, c14n, RelaxNG / XSD / Schematron subsets
rusty_xml-cli rxmlint (not xmllint)
rusty_xml-c-abi optional cdylib, stub until M8. Not published.
rusty_xml-bench shells out to pinned xmllint. Never links libxml2.
rusty_xml-alloc rusty_alloc seam for binaries only. Library never uses it.
bench/ pinned oracle-vs-us timing harness (pinvs.ps1)
oracle/PIN libxml2 v2.15.3 pin (binary is gitignored)
Platform support
| Platform | Status |
|---|---|
| Windows (x86-64) | ✅ builds + tests |
| Linux | ✅ builds + tests |
| macOS | ✅ builds + tests |
wasm32-unknown-unknown |
✅ library cargo check in CI |
No C toolchain, no iconv, no nasm. Gzip (XML_PARSE_UNZIP) is not wired yet
(a 1f 8b buffer is an error). ISO-2022-JP / Shift_JIS / EUC-JP are
unsupported, matching libxml2 built without iconv.
Roadmap
- M0 — pin oracle (libxml2 v2.15.3), C-only board, workspace skeleton
- M1 — character classes, UTF-8 well-formed parse, SAX-exact vs
xmllint --sax - M2 — tree mutation,
xmlsave,xmlTextWriter,xmlTextReader, round-trip - M3 — encodings without iconv, push parser, IO callbacks, local catalogs
- M4 — XPath 1.0 compile + eval,
rxmlint --xpath - M5 — DTD validation, C14N 1.0 + exclusive, XInclude (loader-gated)
- M6 — HTML parser, RelaxNG / XSD / Schematron working subsets
- M7 — performance campaign vs pinned
xmllint: faster than C on every corpus file, N=20, 20/20 pairs (bench/SIDE-BY-SIDE.md) - Optional gzip (
miniz_oxide/XML_PARSE_UNZIP) - M8 — W3C conformance suite wired up and scored against the C oracle (65.0% vs libxml2 79.9%); seeded fuzzer; corpus widened 7 -> 16 files
- M9 — close the conformance gap: 65.0% -> 79.9%, level with libxml2 on the same 2039 cases (ahead on invalid, behind on not-well-formed)
- C ABI
cdylib(XMLPUBFUNnames) + hardening audit - Optional gzip (
miniz_oxide/XML_PARSE_UNZIP) - XML 1.1, external entity loading, CJK multi-byte encodings
Plan: docs/plan/rusty_xml.md.
License
MIT OR Apache-2.0, at your option — see LICENSE-MIT and
LICENSE-APACHE. No GPL/LGPL and no C anywhere in the
dependency tree, CI-enforced with cargo-deny. The C xmllint binary used
as a measurement oracle is neither distributed here nor linked; see
NOTICE.md.
About Mata Network
Mata Network builds sovereign, self-hostable privacy infrastructure — "stop sacrificing your privacy for convenience": wallet & identity, a password manager, a contact manager, and a browser extension that stops your information leaking as you browse.
Remade With Rust is our open-source home for the permissively-licensed building blocks that work depends on — including remade_ffmpeg_rs (the FFmpeg alternative) and FFAI (the AI media toolkit).