Mercurial > public > mercurial-scm > hg
diff rust/hg-core/src/operations/mod.rs @ 45527:b56df13a0450
hg-core: define a `DebugData` `Operation`
Read the content of a `revlog` at a given revision.
Differential Revision: https://phab.mercurial-scm.org/D8959
author | Antoine Cezar <antoine.cezar@octobus.net> |
---|---|
date | Thu, 13 Aug 2020 16:22:15 +0200 |
parents | 0f5286ccf82c |
children | 66756b34c06e |
line wrap: on
line diff
--- a/rust/hg-core/src/operations/mod.rs Fri Sep 04 11:55:07 2020 +0200 +++ b/rust/hg-core/src/operations/mod.rs Thu Aug 13 16:22:15 2020 +0200 @@ -2,6 +2,7 @@ //! An operation is what can be done whereas a command is what is exposed by //! the cli. A single command can use several operations to achieve its goal. +mod debugdata; mod dirstate_status; mod find_root; mod list_tracked_files;