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