helpers 0.6.1

self use helper library
Documentation
//! Use the features you need:
//! ```toml
//! [dependencies]
//! helpers = { version = "x.x.x", features = ["uuid", "rand"] }
//! ```
//! Available features:
//! - uuid
//! - rand
//! - jwt
//! - hash
//! - time

#[cfg(feature = "jwt")]
pub mod jwt;

#[cfg(feature = "rand")]
pub mod rand;

#[cfg(feature = "hash")]
pub mod hash;

#[cfg(feature = "uuid")]
pub mod uuid;

#[cfg(feature = "time")]
pub mod time;