1
2
3
4
5
6
7
8
9
10
#[cfg(all(target_family = "wasm", feature = "blocking"))]
compile_error! {
    "The `blocking` feature is not supported with wasm target."
}

pub mod api;
pub mod entity;
mod err;
pub mod parser;
mod util;