the-kenny / libpaprika

A library to read and write Paprika recipe files and recipe collections.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

libpaprika

Latest Version

A library to read and write Paprika recipe files and recipe collections.

Usage

use libpaprika::RecipeSet;

pub fn main() {
  let set = RecipeSet::from_file("My Recipes.paprikarecipes").unwrap();
  for recipe in set.recipes.values() {
    println!("{}", recipe.name)
  }
}

About

A library to read and write Paprika recipe files and recipe collections.


Languages

Language:Rust 100.0%