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