1 #![allow(incomplete_features)] 2 #![feature(generic_const_exprs)] 3 4 extern crate clap; 5 6 extern crate lazy_static; 7 8 /// Application. 9 pub mod app; 10 11 /// Terminal events handler. 12 pub mod event; 13 14 /// Widget renderer. 15 pub mod ui; 16 17 /// Terminal user interface. 18 pub mod tui; 19 20 pub mod backend; 21 pub mod command; 22 pub mod constant; 23 /// Event handler. 24 pub mod handler; 25 pub mod logging; 26