Skip to content

Commit 879dab4

Browse files
committed
provide a non-parallel version of the status iteration
1 parent 974af7b commit 879dab4

File tree

7 files changed

+259
-157
lines changed

7 files changed

+259
-157
lines changed

gix/src/commit.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ pub mod describe {
5252
/// performed so that the `suffix` is appended to the output. If it is `None`, no check will be performed and
5353
/// there will be no suffix.
5454
/// Note that obtaining the dirty-state of the repository can be expensive.
55-
#[cfg(all(feature = "status", feature = "parallel"))]
55+
#[cfg(feature = "status")]
5656
pub fn format_with_dirty_suffix(
5757
self,
5858
dirty_suffix: impl Into<Option<String>>,
@@ -81,7 +81,7 @@ pub mod describe {
8181
#[error(transparent)]
8282
RefIterInit(#[from] crate::reference::iter::init::Error),
8383
#[error(transparent)]
84-
#[cfg(all(feature = "status", feature = "parallel"))]
84+
#[cfg(feature = "status")]
8585
DetermineIsDirty(#[from] crate::status::is_dirty::Error),
8686
}
8787

0 commit comments

Comments
 (0)