Skip to main content

polyc_runtime/
lib.rs

1//! Shared Unix-coherence scaffolding for polychrome binaries (PRD ยง11):
2//! structured logging, a health/metrics side-server, and signal-driven graceful
3//! shutdown. Used by both the control plane and the harness so the two binaries
4//! behave identically under Kubernetes.
5
6pub mod compat;
7pub mod ghcr;
8pub mod health;
9pub mod hot_reload;
10pub mod observability;
11pub mod propagation;
12pub mod signals;
13pub mod stager;
14pub mod supervise;
15pub mod update_copy;
16pub mod warm_swap;