aboutsummaryrefslogtreecommitdiffstats
path: root/src/search/entry.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/search/entry.rs')
-rw-r--r--src/search/entry.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search/entry.rs b/src/search/entry.rs
index ab9da38..1ac20fc 100644
--- a/src/search/entry.rs
+++ b/src/search/entry.rs
@@ -2,7 +2,7 @@ use ignore::{DirEntry, Walk};
use tracing::error;
use crate::{
- project::{GitProject, PathProject},
+ project::{GitProject, PathProject, ProjectItem},
Project,
};
@@ -45,7 +45,7 @@ impl Entry {
}
impl Iterator for Entry {
- type Item = Box<dyn Project<Error = crate::project::Error>>;
+ type Item = ProjectItem;
#[tracing::instrument]
fn next(&mut self) -> Option<Self::Item> {