Skip to content

Commit 4596a39

Browse files
committed
Fix compilation error in src/plumbing/main.rs
Signed-off-by: Jiahao XU <[email protected]>
1 parent 0b5dc74 commit 4596a39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plumbing/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use crate::plumbing::{
2424

2525
#[cfg(feature = "gitoxide-core-async-client")]
2626
pub mod async_util {
27-
use gitoxide::shared::ProgressRange;
27+
use crate::shared::ProgressRange;
2828

2929
#[cfg(not(feature = "prodash-render-line"))]
3030
compile_error!("BUG: Need at least a line renderer in async mode");
@@ -38,7 +38,7 @@ pub mod async_util {
3838
Option<prodash::render::line::JoinHandle>,
3939
gix_features::progress::DoOrDiscard<prodash::tree::Item>,
4040
) {
41-
use gitoxide::shared::{self, STANDARD_RANGE};
41+
use crate::shared::{self, STANDARD_RANGE};
4242
shared::init_env_logger();
4343

4444
if verbose {

0 commit comments

Comments
 (0)