From 4596a3949cdeb7c6953c2a9b8ac1e51609e1b160 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Mon, 27 May 2024 23:11:42 +1000 Subject: [PATCH] Fix compilation error in `src/plumbing/main.rs` Signed-off-by: Jiahao XU --- src/plumbing/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plumbing/main.rs b/src/plumbing/main.rs index b139264955e..6c8b219d3bf 100644 --- a/src/plumbing/main.rs +++ b/src/plumbing/main.rs @@ -24,7 +24,7 @@ use crate::plumbing::{ #[cfg(feature = "gitoxide-core-async-client")] pub mod async_util { - use gitoxide::shared::ProgressRange; + use crate::shared::ProgressRange; #[cfg(not(feature = "prodash-render-line"))] compile_error!("BUG: Need at least a line renderer in async mode"); @@ -38,7 +38,7 @@ pub mod async_util { Option, gix_features::progress::DoOrDiscard, ) { - use gitoxide::shared::{self, STANDARD_RANGE}; + use crate::shared::{self, STANDARD_RANGE}; shared::init_env_logger(); if verbose {