Mercurial > public > mercurial-scm > hg
diff rust/hg-core/src/operations/mod.rs @ 46440:776b97179c06
rust: Remove DirstateParseError and ListDirstateTrackedFilesError
Use HgError instead.
Differential Revision: https://phab.mercurial-scm.org/D9894
author | Simon Sapin <simon.sapin@octobus.net> |
---|---|
date | Wed, 27 Jan 2021 14:00:21 +0100 |
parents | b274aa2f20fd |
children | 1dcd9c9975ed |
line wrap: on
line diff
--- a/rust/hg-core/src/operations/mod.rs Wed Jan 27 13:41:28 2021 +0100 +++ b/rust/hg-core/src/operations/mod.rs Wed Jan 27 14:00:21 2021 +0100 @@ -10,5 +10,5 @@ pub use cat::cat; pub use debugdata::{debug_data, DebugDataKind}; pub use find_root::{find_root, find_root_from_path, FindRootError}; +pub use list_tracked_files::Dirstate; pub use list_tracked_files::{list_rev_tracked_files, FilesForRev}; -pub use list_tracked_files::{Dirstate, ListDirstateTrackedFilesError};