serde_yml 0.0.13

DEPRECATED — `serde_yml` is unmaintained. This release is a thin compatibility shim that forwards every call to `noyalib` (a pure-Rust, `#![forbid(unsafe_code)]` YAML library). Please migrate to `noyalib`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Examples covering the `Value` surface that the shim still
//! supports. `index_examples` was removed because it exercised the
//! `serde_yml::value::Index` sealed trait, which is no longer
//! exposed by the shim — `noyalib::Value` implements `Index<&str>`
//! and `Index<usize>` natively; see `MIGRATION.md`.

pub(crate) mod de_examples;

pub(crate) fn main() {
    de_examples::main();
}