1 unstable release
| 0.6.0 | Jan 22, 2022 |
|---|
#308 in #pipeline
7KB
137 lines
Simple Pipeline
Usage:
// create the plugs for the pipeline
let plugs: Vec<Box<dyn Plug<PlugCtx>>> = vec![
Box::new(...),
Box::new(...),
...
];
// initialize the pipeline
let pipeline = Pipeline::new(plugs, None);
// execute the pipeline
let result = pipeline.execute(ctx).await;
Dependencies
~125–500KB
~12K SLoC