lib.rs 370 B

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