faucet-source-gcs 1.0.1

Google Cloud Storage source connector for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(docsrs, feature(doc_cfg))]

//! Google Cloud Storage source connector.
//!
//! See the crate-level README for usage and config-field reference.

mod config;
mod stream;

pub use config::{GcsFileFormat, GcsSourceConfig};
pub use faucet_common_gcs::GcsCredentials;
pub use stream::GcsSource;