Skip to main content

bible_io/
lib.rs

1//! A Rust library for working with Bible text data structures
2//!
3//! This library provides structures and functionality for parsing and working with Bible text data,
4//! including books, chapters, and verses.
5
6pub mod bible;
7pub mod bible_books_enum;
8pub mod book;
9pub mod chapter;
10pub mod search_index;
11pub mod verse;
12
13// Re-export main types for easier access
14pub use bible::{Bible, BibleError};
15pub use bible_books_enum::BibleBook;
16pub use book::Book;
17pub use chapter::Chapter;
18pub use search_index::SearchIndex;
19pub use verse::Verse;