Skip to main content

icydb_utils/
lib.rs

1mod case;
2mod hash;
3mod rand;
4
5pub use case::{Case, Casing, to_snake_case};
6pub use hash::{Xxh3, hash_u64, hash_u128};
7pub use rand::{
8    RngError, fill_bytes, is_seeded, next_u8, next_u16, next_u32, next_u64, next_u128,
9    random_bytes, seed_from,
10};