//! Serde serialization and deserialization for yaml-rt's YAML 1.2.2 model.
//!
//! This crate converts typed values. It intentionally does not preserve YAML
//! presentation details; use `yaml-rt`'s `YamlRt` overlay for lossless
//! document editing.
//!
//! [`from_str`] and [`from_slice`] deserialize one YAML document. [`from_reader`]
//! accepts any byte reader. [`to_string`] and [`to_writer`] emit deterministic
//! block-style YAML.
//!
//! [`Value`] provides a `yaml_serde`-compatible generic YAML model. [`to_value`]
//! and [`from_value`] convert between it and typed Serde values without an
//! intermediate YAML string.
pub use ;
pub use ;
pub use ;
pub use ;