#yaml #path #pure

yaml-path

Pure Rust implementation of YAML Path

1 unstable release

0.1.0 Aug 28, 2023

#197 in #pure

Download history 11/week @ 2024-01-08 2/week @ 2024-02-05 5/week @ 2024-02-12 15/week @ 2024-02-19 32/week @ 2024-02-26 15/week @ 2024-03-04 27/week @ 2024-03-11 9/week @ 2024-03-18 8/week @ 2024-03-25 35/week @ 2024-04-01 9/week @ 2024-04-08 7/week @ 2024-04-15

60 downloads per month

MIT license

12KB
244 lines

Rust build Rust tests Rust Clippy

yaml-path is a Rust implementation of the YAML Path specification. It builds on the YAML implementation provided by the Pure-rust yaml-rust crate.

Example usage

    let docs = YamlLoader::load_from_str("hello: there").unwrap();
    let first_doc = &docs[0];
    let hello_path = Path::new("hello").unwrap();
    let results = hello_path.get_all(&first_doc).unwrap();
    assert_eq!(results.len(), 1);
    let mut results = results.into_iter();
    let first = results.next().unwrap();
    assert_eq!(*first, Yaml::String(String::from("there")));

Compatibility

yaml-path aims to follow the Python reference implementation of YAML Path. In particular, it aims to support the same path format with the same behaviour.

The library API will differ, of course, particularly as Rust imposes particular ownership and mutability constraints on data.

Internal details may echo the Python implementation in places, but will not necessarily aim to do so.

As of this writing, yaml-path is in a very nascent state and supports barely any of YAML Path. The journey is just beginning. :)

Dependencies

~185KB