Mercurial > public > mercurial-scm > hg-stable
diff rust/hg-core/src/revlog.rs @ 45532:26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Only covers the needs of the upcoming `rhg debugdata` command.
Differential Revision: https://phab.mercurial-scm.org/D8958
author | Antoine Cezar <antoine.cezar@octobus.net> |
---|---|
date | Fri, 04 Sep 2020 11:55:07 +0200 |
parents | 26114bd6ec60 |
children | c2317b7624fd |
line wrap: on
line diff
--- a/rust/hg-core/src/revlog.rs Wed Sep 16 18:09:32 2020 +0530 +++ b/rust/hg-core/src/revlog.rs Fri Sep 04 11:55:07 2020 +0200 @@ -8,6 +8,9 @@ pub mod node; pub mod nodemap; pub use node::{Node, NodeError, NodePrefix, NodePrefixRef}; +pub mod index; +pub mod patch; +pub mod revlog; /// Mercurial revision numbers ///