1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
pub mod discovery; pub mod sentence_detector; pub mod incremental; pub mod parallel_processing; pub mod restart_log; // Re-export main types for convenient access pub use sentence_detector::{ DetectedSentenceBorrowed, Span }; // Re-export incremental processing utilities pub use incremental::{ generate_aux_file_path, create_complete_aux_file }; // Re-export parallel processing types and functions for benchmarking pub use parallel_processing::{ FileStats }; // Re-export restart log for external use pub use restart_log::{ RestartLog, should_process_file as should_process_file_restart };