// File: dcrypt/crates/utils/src/lib.rs
//! Utility functions for the dcrypt library
//!
//! This crate provides common utilities and helpers that are used by
//! other dcrypt crates but are not part of the public API.
// Ensure alloc is available if no_std and alloc feature is on
extern crate alloc;
// Added this line