canic_utils/lib.rs
1//!
2//! Utility helpers shared across canisters: formatting, time, random number
3//! generation, and WASM helpers. Each submodule provides a focused toolkit used
4//! by the ops and state layers.
5//!
6
7pub mod case;
8pub mod format;
9pub mod hash;
10pub mod instructions;
11pub mod rand;
12pub mod time;
13pub mod wasm;