1 2 3 4 5 6 7 8 9 10 11 12 13
//! fcalc is a library for calculating Factorio recipe inputs.
//!
//!
//! When compiled with the "bin" feature, sepcified by default,
//! it ships a CLI binary called `fcalc` for convenient usage.
mod error;
mod item;
mod recipe;
pub use error::{FcalcError, Result};
pub use item::ITEMS;
pub use recipe::RECIPES;