hakanai-lib 2.12.2

Client library for Hakanai, a secure secret sharing service.
Documentation
// SPDX-License-Identifier: Apache-2.0

//! Utility functions and helpers for the Hakanai library.
//!
//! This module provides various utility functions that support the core functionality
//! of the library but don't belong to any specific domain module. These utilities
//! are designed to be reusable across different parts of the codebase.
//!
//! # Submodules
//!
//! - [`content_analysis`] - Functions for analyzing content types (binary vs text detection)
//! - [`ip_parser`] - Functions for parsing IP addresses and CIDR notation
//! - [`serde_utils`] - Serde utility functions for custom serialization and deserialization
//! - [`size_parser`] - Functions for parsing human-readable size strings
//!

pub mod content_analysis;
pub mod ip_parser;
pub mod serde_utils;
pub mod size_parser;