//! Checks if serializing and deserialing a recipe with all the possible
//! features end with with an equal recipe
//!
//! Deserializing a recipe with serde is not recommended as it
//! will use more memory in comparison to using the cooklang parser
use parse;
const RECIPE: &str = r#"
>> description: desc
>> time: 3 min
A step with @ingredients{}. References to @&ingredients{}, #cookware,
~timers{3%min}.
"#;