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.
1
2
3
4
5
6
7
8
/// This module contains the `path` example.
pub(crate) mod path_examples;

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