cooklang-find 0.6.0

Library for finding and managing Cooklang recipes in the filesystem
Documentation
1
2
3
4
5
6
7
8
9
10
//! Core data models for recipes and metadata.
//!
//! This module contains the fundamental data structures used throughout
//! the library, including recipe entries and their associated metadata.

mod metadata;
mod recipe_entry;

pub use metadata::Metadata;
pub use recipe_entry::{RecipeEntry, RecipeEntryError, StepImageCollection};