zipora 3.1.5

High-performance Rust implementation providing advanced data structures and compression algorithms with memory safety guarantees. Features LRU page cache, sophisticated caching layer, fiber-based concurrency, real-time compression, secure memory pools, SIMD optimizations, and complete C FFI for migration from C++.
//! Development Infrastructure
//! 
//! This module provides essential development infrastructure components including:
//! - Generic factory pattern implementation for object creation
//! - Comprehensive debugging framework with advanced utilities  
//! - Statistical analysis tools for performance monitoring
//! - Advanced profiling integration with RAII-based scoped profiling
//!
//! The implementation draws inspiration from production-ready C++ infrastructure
//! while leveraging Rust's type system for enhanced safety and performance.

pub mod factory;
pub mod debug;
pub mod statistics;
pub mod profiling;

pub use factory::*;
pub use debug::*;
pub use statistics::*;
pub use profiling::*;