spreadsheet_to_json/
lib.rs

1pub mod options;
2pub mod headers;
3pub mod data_set;
4pub mod reader;
5pub mod euro_number_format;
6pub mod is_truthy;
7pub mod helpers;
8pub mod round_decimal;
9pub mod error;
10
11// make tokio available to implementers if not imported directly
12pub use options::*;
13pub use reader::*;
14pub use data_set::*;
15
16// re-export these crates
17pub use tokio;
18// reexported for access to to_snake_case()
19pub use heck;
20// reexported to deconstruct Value objects
21pub use serde_json;
22// reexported to deconstruct Value objects
23pub use simple_string_patterns;
24pub use indexmap;
25// reexported to facilitate post processing and error handling without adding it separately
26pub use calamine;
27