canic-core 0.69.5

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Module: ops::storage::placement
//!
//! Responsibility: group placement-related deterministic storage operations.
//! Does not own: placement policy, workflow orchestration, or endpoint DTOs.
//! Boundary: storage ops for directory, scaling, and sharding records.

pub mod directory;
pub mod scaling;
#[cfg(feature = "sharding")]
pub mod sharding;
#[cfg(feature = "sharding")]
pub mod sharding_lifecycle;