axum_yaml/lib.rs
1//! YAML extractor for axum
2//!
3//! This crate provides struct `Yaml` that can be used to extract typed information from request's body.
4//!
5//! [`serde_yaml`] parser under the hood.
6
7mod macros;
8
9#[cfg(test)]
10mod test_client;
11
12pub mod rejection;
13pub mod yaml;
14
15pub use crate::yaml::Yaml;