share/src/lib.rs

10 lines
205 B
Rust
Raw Normal View History

2022-10-21 12:12:53 +02:00
use rand::{distributions::Alphanumeric, Rng}; // 0.8
pub fn randstr() -> String {
rand::thread_rng()
.sample_iter(&Alphanumeric)
.take(7)
.map(char::from)
.collect()
}