1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! YAML extractor for axum
//!
//! This crate provides struct `Yaml` that can be used to extract typed information from request's body.
//!
//! [`serde_yaml`] parser under the hood.

mod macros;

#[cfg(test)]
mod test_client;

pub mod rejection;
pub mod yaml;

pub use crate::yaml::Yaml;