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
//! The `ruex` utilites. //! //! ``` //! # #![allow(unused_imports)] //! use ruex::utils::*; //! ``` pub mod terminal; pub mod panic; pub mod logging { //! Configurable logging support. //! pub use fern::*; pub use syslog; pub use log::LevelFilter; } pub use humantime::*; pub mod build { //! Build script and macro support. //! pub use companion::*; }