aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository/composer_repository.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/repository/composer_repository.rs')
-rw-r--r--crates/shirabe/src/repository/composer_repository.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/shirabe/src/repository/composer_repository.rs b/crates/shirabe/src/repository/composer_repository.rs
index 84d8fbf7..fbee87d7 100644
--- a/crates/shirabe/src/repository/composer_repository.rs
+++ b/crates/shirabe/src/repository/composer_repository.rs
@@ -1707,6 +1707,7 @@ impl ComposerRepository {
}
/// @param packageNames array of package name => ConstraintInterface|null - if a constraint is provided, only packages matching it will be loaded
+ #[tracing::instrument(skip_all)]
fn load_async_packages(
&mut self,
mut package_names: IndexMap<String, Option<AnyConstraint>>,
@@ -1951,6 +1952,7 @@ impl ComposerRepository {
})
}
+ #[tracing::instrument(skip_all)]
async fn start_cached_async_download(
&self,
file_name: &str,
@@ -2659,6 +2661,7 @@ impl ComposerRepository {
Ok(packages)
}
+ #[tracing::instrument(skip_all)]
fn create_packages(
&mut self,
packages: Vec<IndexMap<String, PhpMixed>>,