Skip to main content

gsym_cache/
docs.rs

1//! Deployment and operations guides.
2//!
3//! - [`deployment`]: cache roots, epochs, trust boundaries, and filesystem
4//!   requirements.
5#![cfg_attr(
6    feature = "manage",
7    doc = " - [`operations`]: population, access tracking, pruning, and crash recovery."
8)]
9#![cfg_attr(
10    feature = "manage",
11    doc = " - [`cookbook`]: complete recipes built from the public API."
12)]
13
14/// Cache roots, epochs, trust boundaries, and filesystem requirements.
15#[doc = include_str!("../docs/deployment.md")]
16pub mod deployment {}
17
18/// Population, access tracking, pruning, and crash recovery.
19#[cfg(feature = "manage")]
20#[doc = include_str!("../docs/operations.md")]
21pub mod operations {}
22
23/// Complete cache API recipes.
24#[cfg(feature = "manage")]
25#[doc = include_str!("../docs/cookbook.md")]
26pub mod cookbook {}