// SPDX-License-Identifier: MIT
//! Standalone id generation without the caching service.
useids_service::crypto_hash::{create_id_as_sha256, create_id_as_sha512};fnmain(){println!("SHA-256: {}",create_id_as_sha256());println!("SHA-512: {}",create_id_as_sha512());}