rust-tokio-supervisor 0.1.3

A Rust tokio supervisor with declarative task supervision, restart policy, shutdown coordination, and observability.
Documentation
1
2
3
4
5
6
7
8
//! IPC (Inter-Process Communication) security modules.
//!
//! This module tree implements the nine IPC security control points
//! (C1-C9) for the dashboard Unix domain socket IPC channel.
//! The entire subtree is gated behind `#[cfg(unix)]` because it depends
//! on Unix Domain Sockets and peer credential syscalls.

pub mod security;