//! Dynamic pipeline example using [`StepVec`].
//!
//! Demonstrates runtime step composition: the `report` node is only included
//! when the `include_report` param is `true`.
//!
//! Usage:
//! cargo run --example dyn_steps_app -- run
//! cargo run --example dyn_steps_app -- check
use ;
use PondError;
// ANCHOR: app
// ANCHOR_END: app