Mercurial > public > mercurial-scm > hg-stable
diff rust/hg-core/src/lib.rs @ 41057:ef54bd33b476
rust: core implementation for lazyancestors
Once exposed through appropriate bindings, this
should be able to replace ancestor.lazyancestors
entirely.
Differential Revision: https://phab.mercurial-scm.org/D5440
author | Georges Racinet <gracinet@anybox.fr> |
---|---|
date | Tue, 04 Dec 2018 11:05:06 +0100 |
parents | d097dd0afc19 |
children | 168041fa6d5f |
line wrap: on
line diff
--- a/rust/hg-core/src/lib.rs Thu Dec 06 20:01:21 2018 +0100 +++ b/rust/hg-core/src/lib.rs Tue Dec 04 11:05:06 2018 +0100 @@ -3,7 +3,7 @@ // This software may be used and distributed according to the terms of the // GNU General Public License version 2 or any later version. mod ancestors; -pub use ancestors::{AncestorsIterator, MissingAncestors}; +pub use ancestors::{AncestorsIterator, LazyAncestors, MissingAncestors}; /// Mercurial revision numbers ///