Add pipeline executor with progress reporting and cancellation

Sequential execution with per-image progress callbacks, cancellation
via atomic flag, batch result tracking (success/fail/sizes/timing).
Phase 5 complete - 85 tests passing, zero clippy warnings.
This commit is contained in:
2026-03-06 02:08:11 +02:00
parent d4aef0b774
commit 8ced89a00f
3 changed files with 308 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ pub mod config;
pub mod discovery;
pub mod encoder;
pub mod error;
pub mod executor;
pub mod loader;
pub mod operations;
pub mod pipeline;