Mercurial > public > mercurial-scm > hg-stable
diff rust/hg-core/src/revlog/mod.rs @ 52285:426696af24d3
rust-revlog: add file IO helpers
This will be useful for the upcoming `InnerRevlog`.
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Wed, 25 Sep 2024 18:10:03 +0200 |
parents | 0744248cc541 |
children | 039b7caeb4d9 |
line wrap: on
line diff
--- a/rust/hg-core/src/revlog/mod.rs Wed Sep 25 16:42:21 2024 +0200 +++ b/rust/hg-core/src/revlog/mod.rs Wed Sep 25 18:10:03 2024 +0200 @@ -13,6 +13,7 @@ pub use node::{FromHexError, Node, NodePrefix}; pub mod changelog; pub mod compression; +pub mod file_io; pub mod filelog; pub mod index; pub mod manifest;