dcrypt_utils/
lib.rs

1// File: dcrypt/crates/utils/src/lib.rs
2
3//! Utility functions for the DCRYPT library
4//!
5//! This crate provides common utilities and helpers that are used by
6//! other DCRYPT crates but are not part of the public API.
7
8#![cfg_attr(not(feature = "std"), no_std)]
9
10// Ensure alloc is available if no_std and alloc feature is on
11#[cfg(all(not(feature = "std"), feature = "alloc"))]
12extern crate alloc;
13
14pub mod data_conversion; // Added this line