Skip to main content

Mountain/Cache/
mod.rs

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