//! A Rust library for working with Bible text data structures
//!
//! This library provides structures and functionality for parsing and working with Bible text data,
//! including books, chapters, and verses.
// Re-export main types for easier access
pub use ;
pub use BibleBook;
pub use Book;
pub use Chapter;
pub use SearchIndex;
pub use Verse;