Crates.io | ingreedy-rs |
lib.rs | ingreedy-rs |
version | 0.2.0 |
source | src |
created_at | 2021-07-18 12:05:19.53285 |
updated_at | 2021-08-03 21:19:11.139422 |
description | Rust port of ingreedy - natural language recipe ingredient parser |
homepage | |
repository | https://github.com/Ninjani/ingreedy-rs |
max_upload_size | |
id | 424361 |
size | 86,824 |
Rust port of ingreedy-py which is a port of Ingreedy.
"2 (28 ounce) can crushed tomatoes"
{
"quantities": [
{
"amount": 56.0,
"unit": "ounce",
"unit_type": "English"
}
],
"ingredient": "can crushed tomatoes"
}
[dependencies]
ingreedy-rs = {version = "0.1.0", default-features = false}
use ingreedy_rs::Ingredient;
fn main() {
let ingredient = Ingredient::parse("2 (28 ounce) can crushed tomatoes")?;
}
Grab binaries from releases or cargo install ingreedy-rs
ingreedy-rs "2 (28 ounce) can crushed tomatoes"
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
See CONTRIBUTING.md.