1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#[macro_use]
extern crate log;
#[cfg(not(target_arch = "wasm32"))]
mod io_native;
#[cfg(not(target_arch = "wasm32"))]
pub use io_native::*;
#[cfg(target_arch = "wasm32")]
mod io_web;
#[cfg(target_arch = "wasm32")]
pub use io_web::*;
pub use crate::serde::*;
pub use abst_data::*;
pub use abst_paths::*;
pub use cli::*;
pub use collections::*;
pub use logger::*;
pub use process::*;
pub use time::*;
pub use utils::*;
mod abst_data;
mod abst_paths;
mod cli;
mod collections;
mod io;
mod logger;
mod process;
mod serde;
mod time;
mod utils;
const PROGRESS_FREQUENCY_SECONDS: f64 = 0.2;