1 2 3 4 5 6 7 8 9 10 11 12 13
//! Miscellaneous Rust utilities //! //! [Repository](https://github.com/spearman/rs-utils) #![feature(decl_macro)] #![cfg_attr(docsrs, feature(doc_cfg))] pub mod file; pub mod log; pub mod numeric; pub mod macros; pub use self::macros::*;