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 macros;
12pub mod rand;
13pub mod serialize;
14pub mod time;
15pub mod wasm;
16
17// re-exports
18pub use ::canic_cdk as cdk;