ids_service 2.1.3

Library that allows to generate unique Ids.
Documentation
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: MIT
//! Standalone id generation without the caching service.

use ids_service::crypto_hash::{create_id_as_sha256, create_id_as_sha512};

fn main() {
    println!("SHA-256: {}", create_id_as_sha256());
    println!("SHA-512: {}", create_id_as_sha512());
}