8 releases (4 breaking)

new 0.5.2 Apr 13, 2024
0.5.1 Apr 13, 2024
0.4.0 Mar 26, 2024
0.3.0 Feb 7, 2024
0.1.0 Jan 31, 2020

#401 in Parser implementations

Download history 134/week @ 2024-01-05 161/week @ 2024-01-12 182/week @ 2024-01-19 56/week @ 2024-01-26 144/week @ 2024-02-02 197/week @ 2024-02-09 116/week @ 2024-02-16 152/week @ 2024-02-23 145/week @ 2024-03-01 54/week @ 2024-03-08 40/week @ 2024-03-15 102/week @ 2024-03-22 294/week @ 2024-03-29 165/week @ 2024-04-05

607 downloads per month
Used in 2 crates

MIT license

120KB
2.5K SLoC

Marked YAML

This library builds atop yaml-rust to provide a YAML AST which includes the marks for where the YAML data comes from. It explicitly operates at a low level, providing only the base safe YAML types (i.e. the vanilla tags tag:yaml.org,2002:seq, tag:yaml.org,2002:map, and tag:yaml.org,2002:str)

The subset of YAML which is supported is quite deliberately limited in order that users of this crate will implicitly discourage complex use of YAML which is harder to manage user expectations with. As an example, the mapping type in this crate explicitly only permits scalars as keys, and since all scalars are treated as strings, mappings always have string keys.

The primary value of this kind of representation of YAML data is to allow applications which want to be very explicit about where input came from an opportunity to do this in a way which normal YAML parsers do not allow.

Using Marked YAML

Currently this library only supports loading YAML from strings, but this is sufficient for most users' purposes. We would not recommend an un-streamed processing engine for massive data anyway.

To load some YAML you simply need to:

let node = marked_yaml::parse_yaml(0, r#"
toplevel: must be a mapping
but:
 - it
 - may
 - contain lists
and:
 mappings: are permitted
 as: sub-mappings
"#);
assert!(node.is_ok());

Parsing a valid YAML file may fail because marked_yaml adds some additional constraints:

  • The top level of the YAML MUST be a mapping.
  • Mapping keys MUST be scalars (strings).
  • Aliases and anchors MAY NOT be used (though this limit may be lifted in the future).

In addition, you can convert between marked_yaml::Node and yaml_rust::Yaml though doing so will not give you any useful markers.

Dependencies

~8MB
~153K SLoC