serde_yamlinator 0.1.0

Serde integration for yaml_rust2 crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! This is a fork of of [serde_yaml2](https://crates.io/crates/serde_yaml2) that focuses on
//! supporting serializing/deserialization from the intermediary parsed yaml representation, rather
//! than from the raw string data.
//!
//! In effect, this reduces the debugability of ser/de functionality from reading string data, but
//! allows more direct manipulation of the source/resultant yaml.

pub mod de;
pub mod ser;
mod wrapper;

pub use de::from_str;
pub use ser::to_string;
pub use wrapper::YamlWrapper as Yaml;