comparison rust/hg-core/src/revlog.rs @ 45539:aebc976fd7d5

hg-core: add path_encode Differential Revision: https://phab.mercurial-scm.org/D9049
author Antoine Cezar <antoine.cezar@octobus.net>
date Tue, 15 Sep 2020 16:45:27 +0200
parents 89ac95bd4993
children 9eb07ab3f2d4
comparison
equal deleted inserted replaced
45538:2d5dfc8fed55 45539:aebc976fd7d5
5 // GNU General Public License version 2 or any later version. 5 // GNU General Public License version 2 or any later version.
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 mod path_encode;
10 pub use node::{Node, NodeError, NodePrefix, NodePrefixRef}; 11 pub use node::{Node, NodeError, NodePrefix, NodePrefixRef};
11 pub mod changelog; 12 pub mod changelog;
12 pub mod index; 13 pub mod index;
13 pub mod manifest; 14 pub mod manifest;
14 pub mod patch; 15 pub mod patch;