//! FFI APIs for the compute cache module.
//!
//! This module provides three different FFI API versions:
//! - **Handle-based**: Traditional C-style functions
//! - **JSON-based**: String serialization for easy language interop
//! - **Bincode-based**: Binary serialization for high performance
/// bincode-based FFI bindings for compute cache operations.
/// Handle-based FFI bindings for compute cache using opaque handles.
/// JSON-based FFI bindings for compute cache using serialized data.
// Re-export all functions for convenience
pub use *;
pub use *;
pub use *;