ingreedy-rs 0.2.0

Rust port of ingreedy - natural language recipe ingredient parser
Documentation

ingreedy-rs

Crates.io Docs.rs CI Coverage Status

Natural language parsing of recipe ingredients

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"
}

As a Rust library

[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")?;
}

As a command-line tool

Grab binaries from releases or cargo install ingreedy-rs

ingreedy-rs "2 (28 ounce) can crushed tomatoes"

License

Licensed under either of

at your option.

Contribution

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.