| Crates.io | deltaflow-harness |
| lib.rs | deltaflow-harness |
| version | 0.2.0 |
| created_at | 2025-12-17 17:21:02.023347+00 |
| updated_at | 2025-12-18 23:58:24.293328+00 |
| description | Web-based pipeline visualization for Deltaflow |
| homepage | |
| repository | https://github.com/mavdi/deltaflow |
| max_upload_size | |
| id | 1990782 |
| size | 93,888 |
Web-based pipeline visualization for Deltaflow.

[dependencies]
deltaflow = { version = "0.4", features = ["sqlite"] }
deltaflow-harness = "0.1"
use deltaflow::{Pipeline, RunnerBuilder, SqliteTaskStore};
use deltaflow_harness::RunnerHarnessExt;
let runner = RunnerBuilder::new(store)
.pipeline(my_pipeline)
.with_visualizer(3000) // Start web UI at http://localhost:3000
.build();
Open http://localhost:3000 in your browser to see your pipeline topology.
For full documentation, see Deltaflow on docs.rs.