From 00f8783ce2ba350c9b025ab8133b44baa09d59e0 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Fri, 9 May 2025 17:25:55 +0300 Subject: [PATCH] fix: fix lints --- src/main.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 63a9944..b0eaf9d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,6 +19,7 @@ use anyhow::{ anyhow, }; use clap::Parser as _; +use dix::store; use yansi::Paint as _; struct WriteFmt(W); @@ -61,7 +62,7 @@ fn real_main() -> Result<()> { let new_path = new_path.clone(); thread::spawn(move || { - let mut connection = dix::store::connect()?; + let mut connection = store::connect()?; Ok::<_, Error>(( connection.query_closure_size(&old_path)?, @@ -70,7 +71,7 @@ fn real_main() -> Result<()> { }) }; - let mut connection = dix::store::connect()?; + let mut connection = store::connect()?; let paths_old = connection.query_depdendents(&old_path).with_context(|| {