Mercurial > public > mercurial-scm > hg
diff rust/hg-core/src/operations/mod.rs @ 45536:639f33f22faf
hg-core: add a `ListRevTrackedFiles` operation
List files tracked at a given revision.
Differential Revision: https://phab.mercurial-scm.org/D9014
author | Antoine Cezar <antoine.cezar@octobus.net> |
---|---|
date | Fri, 18 Sep 2020 16:52:16 +0200 |
parents | 72b7d58d6e35 |
children | 522ec3dc44b9 |
line wrap: on
line diff
--- a/rust/hg-core/src/operations/mod.rs Wed Sep 09 12:12:11 2020 +0200 +++ b/rust/hg-core/src/operations/mod.rs Fri Sep 18 16:52:16 2020 +0200 @@ -14,6 +14,10 @@ ListDirstateTrackedFiles, ListDirstateTrackedFilesError, ListDirstateTrackedFilesErrorKind, }; +pub use list_tracked_files::{ + ListRevTrackedFiles, ListRevTrackedFilesError, + ListRevTrackedFilesErrorKind, +}; // TODO add an `Operation` trait when GAT have landed (rust #44265): // there is no way to currently define a trait which can both return