Skip to content

Commit

Permalink
Fix compilation error in src/plumbing/main.rs
Browse files Browse the repository at this point in the history
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
  • Loading branch information
NobodyXu committed May 27, 2024
1 parent 0b5dc74 commit 4596a39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plumbing/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand All @@ -38,7 +38,7 @@ pub mod async_util {
Option<prodash::render::line::JoinHandle>,
gix_features::progress::DoOrDiscard<prodash::tree::Item>,
) {
use gitoxide::shared::{self, STANDARD_RANGE};
use crate::shared::{self, STANDARD_RANGE};
shared::init_env_logger();

if verbose {
Expand Down

0 comments on commit 4596a39

Please sign in to comment.