spreadsheet_to_json/lib.rs
pub mod options;
pub mod headers;
pub mod data_set;
pub mod reader;
pub mod euro_number_format;
pub mod is_truthy;
// make tokio available to implementers if not imported directly
pub use options::*;
pub use reader::*;
pub use data_set::*;
// re-export these crates
pub use tokio;
// reexported for access to to_snake_case()
pub use heck;
// reexported to deconstruct Value objects
pub use serde_json;
// reexported to deconstruct Value objects
pub use simple_string_patterns;
pub use indexmap;
// reexported to facilitate post processing and error handling without adding it separately
pub use calamine;