Registry / observability / prodash

prodash

JSON →
library31.0.0rscratesunverified

Dashboard for visualizing progress of asynchronous and blocking tasks.

# Cargo.toml [dependencies] prodash = "31.0.0"
INSTALL
IMPORT
SIG · PRODASH
P
prodash
observabilityrustv31.0.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Item
use prodash::tree::Item;

Creates a progress tree and updates a child task.

use prodash::tree::Item; use prodash::progress::Progress; fn main() { let root = Item::new("root"); let mut child = root.add_child("task"); child.init(100, Some("items")); child.set(50); println!("Progress: {}", child.step()); }
Debug
Known issues
gotchaRequires an async runtime for real-time dashboard updates.
fix
Use tokio or async-std and enable the appropriate feature.
affects: >=31.0.0
Upgrade
Version history
31.0.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
36 hits · last 30 days
node
32
Resources
prodash — cargo add prodash · libregistry