yaml-rt
yaml-rt is a YAML 1.2.2 parser and editor for Rust that keeps the original
source text intact. It is designed for tools that need to change YAML without
reformatting everything around the change: comments, whitespace, line endings,
scalar styles, directives, tags, anchors, aliases, document markers, and
original spelling are retained where practical.
Untouched documents are emitted byte-for-byte. Edits are applied as localized source patches, so a changed value normally produces only the diff you asked for.
Version 0.1 is suitable for production use within the guarantees and limitations documented below. Public APIs may still evolve between 0.x releases.
When to use yaml-rt
Use yaml-rt when you are building a configuration editor, migration tool,
formatter-aware automation, or command-line utility where preserving a human's
YAML matters. For ordinary typed data interchange where presentation does not
matter, the optional Serde integration provides a more conventional conversion
API.
Installation
The facade crate enables typed-overlay derives by default:
[]
= "0.1.0"
Choose features explicitly when needed:
[]
= { = "0.1.0", = false }
# or
= { = "0.1.0", = ["serde"] }
Install the command-line editor with:
The installed binary is named yaml-rt.
Lossless editing
Parse a document, queue an edit, and render the minimally changed source:
use ;
YamlDoc::to_string() previews the source with pending patches applied.
YamlDoc::commit_edits() reparses that result and makes it the new baseline for
subsequent edits.
The lower-level API exposes the lossless concrete syntax tree, semantic node metadata, JSON Pointer operations, fragments, diagnostics with spans, and patch-oriented editing primitives.
Typed round-trip overlays
YamlRoundTrip maps a Rust struct onto a YAML mapping without turning the Rust
value into the source of truth. Reading does not discard syntax, and writing
patches only known fields unless configured otherwise.
use ;
Supported field attributes are:
rename = "yaml-key"alias = "legacy-key"defaultanddefault = expressioncomment = "Comment for inserted entries."skipskip_serializing_if = "path::to::predicate"flatten
Rust doc comments become comments for newly inserted entries when no explicit
comment attribute is present. Struct-level policies control unknown fields
with preserve_unknown_fields or prune_unknown_fields, and insertion order
with insert_order = "append" or insert_order = "struct".
Serde conversion
Enable the serde feature when source presentation does not need to survive a
typed conversion:
use ;
Serde serialization emits deterministic block-style YAML. Use a typed round-trip overlay instead when comments, quoting, whitespace, or other source presentation must be retained.
Command-line editor
The CLI applies JSON Pointer operations while preserving the rest of the document:
# Read a node.
# Replace a value and print the edited document.
# Edit a file atomically in place.
# Copy a complete YAML node from a file.
# Select the second document in a YAML stream.
Available operations are get, add, remove, replace, move, copy, and
test. An omitted input file, or -, reads YAML from standard input.
Mutations write to standard output unless --output or --in-place is used.
Values passed with --value or --value-file must be complete YAML nodes.
Run yaml-rt help <operation> for operation-specific arguments.
Crates and features
| Package | Purpose | Published |
|---|---|---|
yaml-rt-core |
Dependency-free source model, parser, CST, semantic graph, diagnostics, editor, and emitter | Yes |
yaml-rt-derive |
YamlRoundTrip procedural derive |
Yes |
yaml-rt-serde |
Serde serializer and deserializer | Yes |
yaml-rt |
Facade re-exporting the public APIs | Yes |
yaml-rt-cli |
yaml-rt command-line editor |
Yes |
yaml-rt-bench |
Local comparison benchmarks | No |
fuzz |
Separate cargo-fuzz workspace | No |
The facade features are:
| Feature | Default | Effect |
|---|---|---|
derive |
Yes | Re-exports yaml_rt_derive::YamlRoundTrip |
serde |
No | Re-exports the yaml-rt-serde conversion API |
yaml-rt-core has no third-party dependencies.
YAML 1.2.2 conformance
The parser is tested against all 402 cases in the YAML Test Suite tag
data-2022-01-17, including semantic JSON comparisons where fixtures provide
them. The expected-failure list is empty.
The conformance harness is opt-in for ordinary package tests. A complete local run uses the pinned submodule:
YAML_TEST_SUITE_RUN_ALL=1 \
YAML_TEST_SUITE_CHECK_JSON=1 \
Guarantees
- Parsing and emitting an untouched valid document is byte-identical.
- Local edits retain unrelated source bytes and aim for the smallest practical diff.
- User-visible syntax and diagnostics carry source spans.
- YAML streams, directives, tags, anchors, aliases, explicit document markers, collection styles, scalar styles, comments, whitespace, and line endings are represented by the lossless model.
- Typed round-trip overlays preserve unknown fields by default.
Current limitations
- This is a round-trip editor, not a canonical YAML formatter.
- Editing an anchored node does not propagate the edit through aliases; aliases continue to refer to the same anchor in the emitted YAML.
- CLI
copyandmovereject cases where anchor ownership would become ambiguous or invalid. - JSON Pointer lookup reports duplicate mapping keys and cannot address non-string mapping keys.
- CLI
testcompares YAML values using the supported YAML 1.2 core scalar and collection model; it is not a general tag-aware application schema. - Serde conversion does not expose a generic YAML
Value, merge-key expansion, or presentation metadata. - Typed-overlay
flattenhas intentionally conservative combinations with field and struct policies; unsupported combinations produce derive errors.
These constraints are checked rather than silently producing lossy or surprising output.
Stability
The 0.1 line is production-usable for the documented behavior. Patch releases will preserve source and semantic behavior unless fixing a correctness or safety issue. Because the project is pre-1.0, public Rust APIs and CLI details may change in minor releases; such changes are documented in the changelog and follow Conventional Commits.
Architecture
The lossless CST remains the source of truth. Semantic information and typed
Rust values are overlays that read from it and queue source patches. See
docs/architecture.md for the component boundaries and
data flow.
Roadmap
Near-term work focuses on expanding ergonomic edit operations, richer schema-aware scalar handling, broader typed-overlay shapes, sustained fuzzing, and performance profiling while retaining zero dependencies in the core crate.
Development
The workspace requires Rust 1.96 or newer and tests the latest stable toolchain. Useful release-readiness commands are:
RUSTDOCFLAGS="-D warnings" \
See RELEASING.md for the publication process.
License
Licensed under either the Apache License, Version 2.0 or the MIT license, at your option.