Expand description
§ReCoco - Rust ETL and Data Transformation Library
ReCoco is an all-Rust fork of CocoIndex providing modular, feature-gated data processing capabilities.
This is the main unified crate that re-exports all ReCoco sub-crates:
recoco-core: Core dataflow engine and operationsrecoco-utils: Shared utilitiesrecoco-splitters: Text splitting and language detection
§Usage
Add to your Cargo.toml:
[dependencies]
recoco = { version = "0.2", features = ["function-split", "source-postgres", "splitter-language-python"] }Or use individual sub-crates:
[dependencies]
recoco-core = "0.2"
recoco-utils = "0.2"