| Crates.io | libpaprika |
| lib.rs | libpaprika |
| version | 0.4.1 |
| created_at | 2019-12-23 18:15:32.470563+00 |
| updated_at | 2022-11-04 12:31:37.696585+00 |
| description | A library to read and generate Paprika recipe files and recipe collections. |
| homepage | |
| repository | https://github.com/the-kenny/libpaprika |
| max_upload_size | |
| id | 191828 |
| size | 79,689 |
A library to read and write Paprika recipe files and recipe collections.
use libpaprika::RecipeSet;
pub fn main() {
let set = RecipeSet::from_file("My Recipes.paprikarecipes").unwrap();
for recipe in set.recipes.values() {
println!("{}", recipe.name)
}
}