[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.reqwest]
features = ["json"]
optional = true
version = "0.12"
[dependencies.serde]
features = ["derive"]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sqlx]
features = ["runtime-tokio", "sqlite", "postgres"]
optional = true
version = "0.8"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
features = ["full"]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
features = ["v7", "serde"]
version = "1"
[features]
database = ["dep:sqlx"]
default = ["http-client", "file"]
file = []
full = ["http-client", "database"]
http-client = ["dep:reqwest"]
[lib]
name = "pipeflow"
path = "src/lib.rs"
[package]
authors = ["Telepair <dev@telepair.io>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "data-structures"]
description = "A lightweight, configuration-driven data pipeline framework"
documentation = "https://docs.rs/pipeflow"
edition = "2024"
keywords = ["pipeline", "etl", "data", "streaming", "async"]
license = "MIT"
name = "pipeflow"
readme = "README.md"
repository = "https://github.com/telepair/pipeflow"
rust-version = "1.92"
version = "0.0.1"