cooklang-import 0.3.2

A tool for importing recipes into Cooklang format
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::Serialize;

#[derive(Debug, Serialize)]
pub struct Recipe {
    pub name: String,
    pub description: Option<String>,
    pub image: Vec<String>,
    pub ingredients: String,
    pub instructions: String,
}