Popularity
1.6
Declining
Activity
0.0
Stable
22
6
11

Programming language: Rust
License: MIT License
Tags: Encoding     Yaml    
Latest version: v0.2.1

libyaml-rust alternatives and similar packages

Based on the "YAML" category.
Alternatively, view libyaml-rust alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of libyaml-rust or a related project?

Add another 'YAML' Package

README

libyaml-rust

libyaml-rust on Travis CI yaml on crates.io

LibYAML bindings for Rust

Dependencies

  • LibYAML 0.1.4 or higher
  • Stable Rust (2015/2018 edition)

Usage

Parse from memory

extern crate yaml;

use yaml::constructor::*;

yaml::parse_bytes_utf8("[1, 2, 3]".as_bytes()); // => Ok(vec![YamlSequence(~[YamlInteger(1), YamlInteger(2), YamlInteger(3)])])

Parse from Reader

extern crate yaml;

use std::io::BufReader;
use yaml::constructor::*;

let data = "[1, 2, 3]";
let mut reader = BufReader::new(data.as_bytes());

yaml::parse_io_utf8(&mut reader); // => Ok(vec![YamlSequence(~[YamlInteger(1), YamlInteger(2), YamlInteger(3)])])

Todo

In the order of what I want to do...