//! Output serialization for Arrow RecordBatches
//!
//! Provides serialization to various formats:
//! - JSON (NDJSON - newline-delimited JSON)
//! - Arrow IPC (streaming format for cross-language interop)
//! - Parquet (optional, behind feature flag)
pub use to_ipc;
pub use to_json;
pub use to_parquet;