faucet-source-csv 1.0.0

CSV file source connector for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_cfg))]

//! # faucet-source-csv
//!
//! CSV file source connector for the faucet-stream ecosystem.
//!
//! Reads a CSV file and returns each row as a JSON object with header names
//! (or generated column names) as keys.

pub mod config;
pub mod stream;

pub use faucet_core::{FaucetError, Source};

pub use config::CsvSourceConfig;
pub use stream::CsvSource;