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