Skip to main content

spreadsheet_to_json/
lib.rs

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