yaml-path

Crates.ioyaml-path
lib.rsyaml-path
version0.1.0
sourcesrc
created_at2023-08-28 09:28:33.164408
updated_at2023-08-28 09:28:33.164408
descriptionPure Rust implementation of YAML Path
homepage
repositoryhttps://github.com/ejrh/yaml-path/
max_upload_size
id956774
size22,773
Edmund Horner (ejrh)

documentation

README

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. :)

Commit count: 19

cargo fmt