yaml-rust

The missing YAML 1.2 implementation for Rust.

Build Status Build status license version

yaml-rust is a pure Rust YAML 1.2 implementation, which enjoys the memory safety property and other benefits from the Rust language. The parser is heavily influenced by libyaml and yaml-cpp.

This crate works on all Rust-supported platforms. It also works on Rust 1.0.0 and nightly!

See Document

NOTE: This library is still under heavy development.

WARNING: This library needs more tests and it is NOT ready for parsing arbitrary user input from untrusted source.

Quick Start

Add the following to the Cargo.toml of your project:

toml [dependencies] yaml-rust = "0.3"

or

toml [dependencies.yaml-rust] git = "https://github.com/chyh1990/yaml-rust.git"

and import:

rust extern crate yaml_rust;

Use yaml::YamlLoader to load the YAML documents and access it as Vec/HashMap:

```rust extern crate yamlrust; use yamlrust::{YamlLoader, YamlEmitter};

fn main() { let s = " foo: - list1 - list2 bar: - 1 - 2.0 "; let docs = YamlLoader::loadfromstr(s).unwrap();

// Multi document support, doc is a yaml::Yaml
let doc = &docs[0];

// Debug support
println!("{:?}", doc);

// Index access for map & array
assert_eq!(doc["foo"][0].as_str().unwrap(), "list1");
assert_eq!(doc["bar"][1].as_f64().unwrap(), 2.0);

// Chained key/array access is checked and won't panic,
// return BadValue if they are not exist.
assert!(doc["INVALID_KEY"][100].is_badvalue());

// Dump the YAML object
let mut out_str = String::new();
{
    let mut emitter = YamlEmitter::new(&mut out_str);
    emitter.dump(doc).unwrap(); // dump the YAML object to a String
}
println!("{}", out_str);

} ```

Note that yaml_rust::Yaml implements Index<&'a str> & Index<usize>:

If your document does not conform to this convention (e.g. map with complex type key), you can use the Yaml::as_XXX family API to access your documents.

Features

Specification Compliance

This implementation aims to provide YAML parser fully compatible with the YAML 1.2 specification. The parser can correctly parse almost all examples in the specification, except for the following known bugs:

However, the widely used library libyaml also fails to parse these examples, so it may not be a huge problem for most users.

Goals

License

Licensed under either of

at your option.

Contribution

Fork & PR on Github.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.