Skip to main content

spreadsheet_to_json/
lib.rs

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