Mountain/Cache/mod.rs
1#![allow(non_snake_case)]
2
3//! Mountain caching primitives.
4//!
5//! - [`AssetMemoryMap`] - file-backed mmap cache for the bundled
6//! workbench assets (and any other static-disk asset served via
7//! the `vscode-file://` / `tauri://` / `land://` schemes).
8//! - [`PathCanon`] - process-wide canonical-path cache; collapses repeat
9//! `dunce::canonicalize` calls used by the fs-scope security gate.
10//!
11//! All entries here are additive performance helpers; the editor
12//! continues to function with any one of them disabled.
13
14pub mod AssetMemoryMap;
15pub mod PathCanon;