Mercurial > public > mercurial-scm > hg-stable
diff rust/hg-core/src/lib.rs @ 42818:2e1f74cc3350
rust-dirstate: split DirsMultiset constructor per input type
Since skip_state only applies to dirstate, it doesn't make sense to unify
these constructors and dispatch by enum.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sat, 17 Aug 2019 18:25:29 +0900 |
parents | fce6dc93a510 |
children | a03a29462c0a |
line wrap: on
line diff
--- a/rust/hg-core/src/lib.rs Sat Aug 17 16:33:05 2019 +0900 +++ b/rust/hg-core/src/lib.rs Sat Aug 17 18:25:29 2019 +0900 @@ -12,8 +12,7 @@ dirs_multiset::DirsMultiset, dirstate_map::DirstateMap, parsers::{pack_dirstate, parse_dirstate, PARENT_SIZE}, - CopyMap, DirsIterable, DirstateEntry, DirstateParents, EntryState, - StateMap, + CopyMap, DirstateEntry, DirstateParents, EntryState, StateMap, }; mod filepatterns; pub mod utils;