rufl/
lib.rs

1//! Rufl is an util function library for rust.
2//! It provides a series of useful functions to make your rust development easier.
3//!
4#[cfg(feature = "collection")]
5pub mod collection;
6#[cfg(feature = "eventbus")]
7pub mod eventbus;
8
9#[cfg(feature = "file")]
10pub mod file;
11
12#[cfg(feature = "math")]
13pub mod math;
14
15#[cfg(feature = "random")]
16pub mod random;
17
18#[cfg(feature = "string")]
19pub mod string;