Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/project-model/src/workspace.rs')
| -rw-r--r-- | crates/project-model/src/workspace.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/project-model/src/workspace.rs b/crates/project-model/src/workspace.rs index 00e9c12988..5fa5383cf9 100644 --- a/crates/project-model/src/workspace.rs +++ b/crates/project-model/src/workspace.rs @@ -16,6 +16,7 @@ use semver::Version; use span::Edition; use stdx::always; use toolchain::Tool; +use tracing::instrument; use triomphe::Arc; use crate::{ @@ -863,6 +864,7 @@ impl ProjectWorkspace { } } +#[instrument(skip_all)] fn project_json_to_crate_graph( rustc_cfg: Vec<CfgFlag>, load: &mut dyn FnMut(&AbsPath) -> Option<FileId>, |