diff rust/hg-core/src/operations/mod.rs @ 45113:98817e5daca7

hg-core: define a `dirstate_status` `Operation` This is 3/3 in a series of patches to improve dirstate status' code. Following in the footsteps of a46e36b82461, we move the main status functionality to an `Operation`. This will most likely be subject to change in the future (what function signature, what parameters, etc., but we will see when `rhg` gets `hg status` support. Differential Revision: https://phab.mercurial-scm.org/D8663
author Rapha?l Gom?s <rgomes@octobus.net>
date Wed, 24 Jun 2020 17:53:44 +0200
parents 5965efb609b6
children 452ece5654c5
line wrap: on
line diff
--- a/rust/hg-core/src/operations/mod.rs	Wed Jun 24 17:20:39 2020 +0200
+++ b/rust/hg-core/src/operations/mod.rs	Wed Jun 24 17:53:44 2020 +0200
@@ -1,3 +1,4 @@
+mod dirstate_status;
 mod find_root;
 pub use find_root::{FindRoot, FindRootError, FindRootErrorKind};