rust-recipe 0.1.1

A Rust crate that scrapes recipes from websites.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: fmt lint build test doc

fmt:
	cargo fmt

lint:
	cargo clippy --all-features

build:
	cargo build --all-features

test:
	cargo test --all-features

doc:
	cargo doc --all-features --open