Skip to main content

cranpose/_docs/
mod.rs

1//! Guides for using Cranpose.
2//!
3//! These pages live in the crate rather than in a separate site so they are
4//! version-locked to the code and their examples are compiled by
5//! `cargo test --doc`. A guide that stops compiling is a guide that is wrong,
6//! and CI finds out before a reader does.
7//!
8//! - `getting_started` -- a window on screen.
9//! - `state` -- state that survives recomposition.
10//! - `layout` -- modifiers, stacks, and lists that stay cheap.
11//! - `platforms` -- what each target needs.
12
13pub mod getting_started;
14pub mod layout;
15pub mod platforms;
16pub mod state;