canic 0.26.2

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
#![cfg(feature = "control-plane")]

use canic::ids::{TemplateChunkingMode, TemplateManifestState};

// Confirms the public `canic` facade exposes the full control-plane enum surface.
#[test]
fn control_plane_facade_reexports_template_manifest_enums() {
    let _ = TemplateChunkingMode::Chunked;
    let _ = TemplateManifestState::Approved;
}