diff -r f33b87b46135 -r 22d24f6d6411 rust/hg-core/src/sparse.rs --- a/rust/hg-core/src/sparse.rs Mon Nov 04 11:21:43 2024 +0100 +++ b/rust/hg-core/src/sparse.rs Mon Nov 04 11:26:41 2024 +0100 @@ -5,7 +5,10 @@ use crate::{ errors::HgError, exit_codes::STATE_ERROR, - filepatterns::{PatternError, parse_pattern_file_contents}, + filepatterns::{ + parse_pattern_file_contents, IgnorePattern, PatternError, + PatternFileWarning, PatternSyntax, + }, matchers::{ AlwaysMatcher, DifferenceMatcher, IncludeMatcher, Matcher, UnionMatcher, @@ -15,8 +18,7 @@ repo::Repo, requirements::SPARSE_REQUIREMENT, utils::{hg_path::HgPath, SliceExt}, - IgnorePattern, PatternFileWarning, PatternSyntax, Revision, - NULL_REVISION, + Revision, NULL_REVISION, }; /// Command which is triggering the config read