Mercurial > public > mercurial-scm > hg-stable
diff rust/hg-core/src/lib.rs @ 48557:791f5d5f7a96
hg-core: dedup LazyAncestors Iterator impl
? Which has been moved to the vcsgraph crate.
AncestorsIterator cannot yet be removed because it is still being used in
hg-core.
Differential Revision: https://phab.mercurial-scm.org/D11948
author | pacien <pacien.trangirard@pacien.net> |
---|---|
date | Fri, 10 Dec 2021 16:25:02 +0100 |
parents | 5734b03ecf3e |
children | 11c0411bf4e2 |
line wrap: on
line diff
--- a/rust/hg-core/src/lib.rs Tue Nov 16 18:54:05 2021 +0100 +++ b/rust/hg-core/src/lib.rs Fri Dec 10 16:25:02 2021 +0100 @@ -7,7 +7,7 @@ mod ancestors; pub mod dagops; pub mod errors; -pub use ancestors::{AncestorsIterator, LazyAncestors, MissingAncestors}; +pub use ancestors::{AncestorsIterator, MissingAncestors}; pub mod dirstate; pub mod dirstate_tree; pub mod discovery;