flowlog-build 0.2.2

Build-time FlowLog compiler for library mode.
Documentation
mod argument;
mod arithmetic;
mod collection;
mod compare;
mod constraint;
mod error;
mod fn_call;
mod rule_planner;
mod stratum_planner;
mod transformation;

// External API — used by flowlog-compiler and integration tests.
pub use error::PlanError;
pub use stratum_planner::StratumPlanner;

// Intra-crate shortcuts.
pub(crate) use argument::TransformationArgument;
pub(crate) use arithmetic::{ArithmeticArgument, FactorArgument};
pub(crate) use collection::Collection;
pub(crate) use compare::ComparisonExprArgument;
pub(crate) use constraint::Constraints;
pub(crate) use fn_call::FnCallPredicateArgument;
pub(crate) use rule_planner::RulePlanner;
pub(crate) use transformation::{
    KeyValueLayout, Transformation, TransformationFlow, TransformationInfo,
};