From f54df9fd6d50030beee064bfd1415bad066107d2 Mon Sep 17 00:00:00 2001 From: A Farzat Date: Sat, 20 Jun 2026 16:58:01 +0300 Subject: Extract paths_from_null_separated_bytes to utils --- src/lib.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index c35c0ea..4815653 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,6 +7,8 @@ //! The crate is used by the main `repo2markdown` binary and by helper binaries such as //! `r2md-fence`, `r2md-append`, `r2md-prepend`, and `r2md-remove`. +mod util; + pub mod fence_wrapper; pub mod fenced_md_generator; pub mod logger; @@ -14,4 +16,8 @@ pub mod md_generator; pub mod normalizer; pub mod path_list_editor; pub mod renderer; -mod util; + +/// Utilities for working with null-separated path lists. +pub mod path_list { + pub use crate::util::path_list::paths_from_null_separated_bytes; +} -- cgit v1.3.1