cooklang-import 0.2.0

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: String,
    pub image: Vec<String>,
    pub ingredients: Vec<String>,
    pub steps: String,
}