43 releases (5 stable)
Uses new Rust 2024
| new 1.25.2 | May 16, 2026 |
|---|---|
| 1.24.1 | Apr 13, 2026 |
| 0.34.0 | Feb 23, 2026 |
| 0.31.0 | Dec 18, 2025 |
| 0.12.0 | Nov 25, 2024 |
#464 in Database interfaces
58,320 downloads per month
Used in 16 crates
(6 directly)
61KB
1K
SLoC
yamlpath
Format-preserving YAML feature extraction.
yamlpath uses tree-sitter and tree-sitter-yaml under the hood.
Important
This is not a substitute for full-fledged query languages or tools
like JSONPath or jq.
Why?
YAML is an extremely popular configuration format, with an interior data model that closely resembles JSON.
It's common to need to analyze YAML files, e.g. for a security tool that needs to interpret the contents of a configuration file.
The normal way to do this is to parse the YAML into a document and interpret that document. However, that parsing operation is destructive: in producing a document model, it erases the comments and exact formatting of the YAML input.
This can make it difficult to present intelligible actions to uses, since users think in terms of changes needed on lines and columns and not changes needed to a specific sub-object within a document's hierarchy.
yamlpath bridges the gap between these two views: it allows a program
to operate on the (optimal) document view, and then translate back to
a human's understanding of the YAML input.
License
MIT License.
Dependencies
~4.5–6.5MB
~140K SLoC