aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli.rs')
-rw-r--r--src/cli.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli.rs b/src/cli.rs
index a5cd2dd..b1af9f6 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -4,7 +4,7 @@ use serde::{Deserialize, Serialize};
use std::path::PathBuf;
use tracing::{metadata::LevelFilter, Level};
-use crate::{search, Config};
+use crate::{config::Entry, Config};
/// Tool for listing project directories.
#[derive(Debug, Clone, Default, Parser, Serialize, Deserialize)]
@@ -64,7 +64,7 @@ impl From<Projects> for Config {
.paths
.iter()
.cloned()
- .map(|path_buf| search::entry::Config {
+ .map(|path_buf| Entry {
path_buf,
hidden: value.hidden,
max_depth: value.max_depth,