diff options
| author | A Farzat <a@farzat.xyz> | 2026-06-20 16:58:01 +0300 |
|---|---|---|
| committer | A Farzat <a@farzat.xyz> | 2026-06-20 19:45:59 +0300 |
| commit | f54df9fd6d50030beee064bfd1415bad066107d2 (patch) | |
| tree | 0d2a2eb67045dc76bdb281945d41d919cc22802b /src/lib.rs | |
| parent | 4ec209d3863e913cffbe8c6e0a14a292820a2715 (diff) | |
| download | repo2markdown-f54df9fd6d50030beee064bfd1415bad066107d2.tar.gz repo2markdown-f54df9fd6d50030beee064bfd1415bad066107d2.zip | |
Extract paths_from_null_separated_bytes to utils
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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; +} |
