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
//! Test support utilities for integration tests.
//!
//! This module contains factory, time, and child spawning helpers used by
//! integration tests. Downstream crate users should treat this surface as
//! an internal testing API.

pub mod assertions;
pub mod child_spawn;
pub mod factory;
pub mod test_time;