serde_yml 0.0.12

A robust Rust library that simplifies the serialization and deserialization of Rust data structures to and from YAML format using the widely-used Serde framework.
/// This module contains the `tag` example.
pub(crate) mod tag_examples;

/// This module contains the `emitter` example.
pub(crate) mod emitter_examples;

/// This module contains the `parser` example.
pub(crate) mod parser_examples;

/// This module contains the `safe_cstr` example.
pub(crate) mod safe_cstr_examples;

/// This module contains the `util` example.
pub(crate) mod util_examples;

/// The main function that runs all the example modules.
pub(crate) fn main() {
    // Run the example module `emitter`.
    emitter_examples::main();

    // Run the example module `parser`.
    parser_examples::main();

    // Run the example module `safe_cstr`.
    safe_cstr_examples::main();

    // Run the example module `tag`.
    tag_examples::main();

    // Run the example module `util`.
    util_examples::main();
}