rust-tokio-supervisor 0.1.4

A Rust tokio supervisor with declarative task supervision, restart policy, shutdown coordination, and observability.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Role result and error types.
//!
//! Each role owns its public result alias while shared lifecycle diagnostics stay
//! aligned through a common phase label.

pub mod job;
pub mod service;
pub mod sidecar;
pub mod supervisor;
pub mod worker;