planetwars.dev/planetwars-server/src/util.rs

10 lines
225 B
Rust
Raw Normal View History

use rand::{distributions::Alphanumeric, Rng};
pub fn gen_alphanumeric(length: usize) -> String {
rand::thread_rng()
.sample_iter(&Alphanumeric)
.take(length)
.map(char::from)
.collect()
}