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 admission;
7pub mod compat;
8pub mod ghcr;
9pub mod health;
10pub mod hot_reload;
11pub mod observability;
12pub mod propagation;
13pub mod release_manifest;
14pub mod retry;
15pub mod signals;
16pub mod stager;
17pub mod supervise;
18pub mod update_copy;
19pub mod warm_swap;