diff rust/hg-core/src/revlog.rs @ 45533:89ac95bd4993

hg-core: add `Manifest` a specialized `Revlog` A facade to `Revlog` to provide a `manifest` specific interface. Differential Revision: https://phab.mercurial-scm.org/D9011
author Antoine Cezar <antoine.cezar@octobus.net>
date Wed, 09 Sep 2020 14:50:58 +0200
parents c2317b7624fd
children aebc976fd7d5
line wrap: on
line diff
--- a/rust/hg-core/src/revlog.rs	Wed Sep 09 16:25:23 2020 +0200
+++ b/rust/hg-core/src/revlog.rs	Wed Sep 09 14:50:58 2020 +0200
@@ -10,6 +10,7 @@
 pub use node::{Node, NodeError, NodePrefix, NodePrefixRef};
 pub mod changelog;
 pub mod index;
+pub mod manifest;
 pub mod patch;
 pub mod revlog;