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
#![allow(soft_unstable)]
#![feature(test)]
#![feature(extend_one)]
#![feature(int_abs_diff)]
#![feature(slice_group_by)]
#![feature(thread_is_running)]
#![feature(exclusive_range_pattern)]
#![feature(associated_type_defaults)]

#[cfg(test)]
mod test;

mod api;
mod error;

pub mod model;

pub use api::*;
pub use error::*;

#[cfg(feature = "cli")]
pub mod cli;

#[cfg(feature = "interactive")]
pub mod interactive;

#[cfg(feature = "ui")]
pub mod ui;