// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB
//! CDC Production module.
//!
//! This module provides the infrastructure for generating Change Data Capture events
//! from database commits. It is designed to be independent of the MVCC storage layer,
//! using traits for version resolution.
//!
//! Key components:
//! - `CdcProducerActor`: Actor-based CDC producer with periodic cleanup
//! - `CdcProducerEventListener`: Listens to PostCommitEvent and forwards to producer actor
pub