spreadsheet-to-json 0.3.2

Asynchronous conversion of Excel and OpenDocument spreadsheets as well as CSV and TSV files to JSON or JSONL
Documentation
pub mod options;
pub mod headers;
pub mod data_set;
mod detect;
pub mod reader;
pub use is_truthy;
pub mod helpers;
pub mod round_decimal;
pub mod error;

// 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;
pub use simple_string_patterns;
pub use indexmap;
// reexported to facilitate post processing and error handling without adding it separately
pub use calamine;