Skip to main content

Mountain/Workspace/
WorkspaceFileService.rs

1
2//! Parsing and serialization of VS Code `.code-workspace` JSON files.
3//!
4//! The format is a JSON object with at minimum a `folders` array; each entry
5//! has a `path` relative to the workspace file's parent directory.
6//! `ParseWorkspaceFile::Fn` resolves each path through the canonical-path
7//! cache and converts it to a `file://` URI.
8
9pub mod ParseWorkspaceFile;
10
11pub(crate) mod WorkspaceFile;
12
13pub(crate) mod WorkspaceFolderEntry;