[package]
name = "pipeflow"
version = "0.0.2"
edition = "2024"
rust-version = "1.92"
authors = ["Telepair <dev@telepair.io>"]
description = "A lightweight, configuration-driven data pipeline framework"
license = "MIT"
repository = "https://github.com/telepair/pipeflow"
documentation = "https://docs.rs/pipeflow"
readme = "README.md"
keywords = ["pipeline", "etl", "data", "streaming", "async"]
categories = ["asynchronous", "data-structures", "command-line-utilities"]
[[bin]]
name = "pipeflow"
path = "src/main.rs"
[lib]
name = "pipeflow"
path = "src/lib.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time", "fs", "io-util", "signal"] }
tokio-stream = { version = "0.1", features = ["sync"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
reqwest = { version = "0.12", features = ["json"], optional = true }
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "postgres"], optional = true }
uuid = { version = "1", features = ["v7", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
humantime-serde = "1"
thiserror = "2"
async-trait = "0.1"
tracing = "0.1"
tracing-subscriber = "0.3"
rand = "0.9"
futures = "0.3.31"
[features]
default = ["http-client", "file"]
full = ["http-client", "database"]
http-client = ["dep:reqwest"]
database = ["dep:sqlx"]
file = []
test-utils = []
[dev-dependencies]
wiremock = "0.6"
tokio-test = "0.4"
pipeflow = { path = ".", features = ["test-utils"] }
futures = "0.3.31"
tempfile = "3.24.0"