//! Apache Parquet source connector for the faucet-stream ecosystem.
//!
//! Reads Parquet files from local paths, glob patterns, or S3 and yields
//! each row as a [`serde_json::Value`]. Built on the `parquet` + `arrow`
//! crates for vectorised, streaming reads — no whole-file buffering.
//!
//! See the crate-level README for configuration examples.
pub use ;
pub use record_batch_to_json;
pub use ParquetSource;
pub use ;