1
2
3
4
5
6
7
8
9
use rand::{self, Rng};

pub fn random_id_str() -> String {
    let project_id: Vec<u8> = rand::thread_rng()
        .sample_iter(&rand::distributions::Standard)
        .take(32)
        .collect();
    crev_common::base64_encode(&project_id)
}