canic-host 0.100.81

Host-side App build, Fleet install, deployment, and release-set library for Canic workspaces
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Module: registry
//!
//! Responsibility: define host-side canister topology entries.
//! Does not own: topology discovery, transport, or deployment policy.
//! Boundary: shared projection consumed by host and operator workflows.

///
/// RegistryEntry
///

#[derive(Clone, Debug, Eq, PartialEq)]
pub struct RegistryEntry {
    pub pid: String,
    pub role: Option<String>,
    pub parent_pid: Option<String>,
    pub module_hash: Option<String>,
}