aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository/artifact_repository.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/repository/artifact_repository.rs')
-rw-r--r--crates/shirabe/src/repository/artifact_repository.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/repository/artifact_repository.rs b/crates/shirabe/src/repository/artifact_repository.rs
index 674325d..eff8fef 100644
--- a/crates/shirabe/src/repository/artifact_repository.rs
+++ b/crates/shirabe/src/repository/artifact_repository.rs
@@ -132,7 +132,7 @@ impl ArtifactRepository {
fn get_composer_information(
&self,
file: &Path,
- ) -> anyhow::Result<Option<Box<dyn BasePackage>>> {
+ ) -> anyhow::Result<Option<crate::package::PackageInterfaceHandle>> {
let mut json: Option<String> = None;
let file_extension = file
.extension()