faucet-source-gcs 1.3.0

Google Cloud Storage source connector for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![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;
mod verify;

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