diff rust/hg-core/src/lib.rs @ 45364:5fe25f8ef5d9

rhg: add a `Files` `Command` to prepare the `rhg files` subcommand Differential Revision: https://phab.mercurial-scm.org/D8868
author Antoine Cezar <antoine.cezar@octobus.net>
date Wed, 29 Jul 2020 10:21:17 +0200
parents a46e36b82461
children a2eda1ff22aa
line wrap: on
line diff
--- a/rust/hg-core/src/lib.rs	Wed Jul 29 15:49:44 2020 +0200
+++ b/rust/hg-core/src/lib.rs	Wed Jul 29 10:21:17 2020 +0200
@@ -57,6 +57,7 @@
 pub enum DirstateParseError {
     TooLittleData,
     Overflow,
+    // TODO refactor to use bytes instead of String
     CorruptedEntry(String),
     Damaged,
 }