faucet_source_csv/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3//! # faucet-source-csv
4//!
5//! CSV file source connector for the faucet-stream ecosystem.
6//!
7//! Reads a CSV file and returns each row as a JSON object with header names
8//! (or generated column names) as keys.
9
10pub mod config;
11pub mod stream;
12
13pub use faucet_core::{FaucetError, Source};
14
15pub use config::CsvSourceConfig;
16pub use stream::CsvSource;