comparison rust/hg-core/src/revlog.rs @ 45532:c2317b7624fd

hg-core: add `Changlog` a specialized `Revlog` A facade to `Revlog` to provide a `changelog` specific interface. Differential Revision: https://phab.mercurial-scm.org/D9010
author Antoine Cezar <antoine.cezar@octobus.net>
date Wed, 09 Sep 2020 16:25:23 +0200
parents 26c53ee51c68
children 89ac95bd4993
comparison
equal deleted inserted replaced
45531:b0d6309ff50c 45532:c2317b7624fd
6 //! Mercurial concepts for handling revision history 6 //! Mercurial concepts for handling revision history
7 7
8 pub mod node; 8 pub mod node;
9 pub mod nodemap; 9 pub mod nodemap;
10 pub use node::{Node, NodeError, NodePrefix, NodePrefixRef}; 10 pub use node::{Node, NodeError, NodePrefix, NodePrefixRef};
11 pub mod changelog;
11 pub mod index; 12 pub mod index;
12 pub mod patch; 13 pub mod patch;
13 pub mod revlog; 14 pub mod revlog;
14 15
15 /// Mercurial revision numbers 16 /// Mercurial revision numbers