#![cfg_attr(coverage, feature(coverage_attribute))]
pub mod composition;
pub mod constants;
pub mod display;
pub mod docs;
pub mod error;
pub mod fpd;
pub mod ingredient;
pub mod properties;
pub mod recipe;
pub mod specs;
pub mod util;
pub mod validate;
#[cfg(feature = "data")]
pub mod data;
#[cfg(feature = "database")]
pub mod database;
#[cfg(feature = "diesel")]
pub mod diesel;
#[cfg(feature = "wasm")]
pub mod wasm;
pub use {
composition::{CompKey, Composition},
fpd::{FPD, FpdKey},
ingredient::{Category, Ingredient},
properties::{MixProperties, PropKey},
};
#[cfg(test)]
mod tests;
#[cfg(test)]
mod _lint {
use criterion as _;
}