transferred-files 0.0.3

Local filesystem source and destination (Parquet and other file formats) for the transferred data transfer engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Local filesystem source + destination, with pluggable file-format codecs
//! (Parquet now; Csv/Avro later). Built on the arrow-rs `parquet` crate.
#![doc(html_logo_url = "https://raw.githubusercontent.com/skatromb/transferred/main/logo.png")]

mod destination;
mod formats;
mod source;

pub use destination::FilesDestination;
pub use formats::parquet::Compression;
pub use formats::{FileReader, FileWriter, FormatRead, FormatWrite, Parquet};
pub use source::{FilesSource, GlobOrPaths};