[package]
edition = "2021"
rust-version = "1.75"
name = "pipe-io"
version = "1.0.0"
authors = ["James Gober <me@jamesgober.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed source-transform-sink pipelines with backpressure, batching, windowing, and per-stage error isolation. A lightweight runtime-agnostic stream processor for in-process workloads. The missing middle ground between raw iterators and full distributed stream processing."
homepage = "https://github.com/jamesgober/pipe-io"
documentation = "https://docs.rs/pipe-io"
readme = "README.md"
keywords = [
"pipeline",
"stream",
"backpressure",
"etl",
"io",
]
categories = [
"asynchronous",
"data-structures",
"concurrency",
]
license = "Apache-2.0"
repository = "https://github.com/jamesgober/pipe-io"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["std"]
std = []
[lib]
name = "pipe_io"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
required-features = ["std"]
[[example]]
name = "batching"
path = "examples/batching.rs"
required-features = ["std"]
[[example]]
name = "custom_driver"
path = "examples/custom_driver.rs"
required-features = ["std"]
[[example]]
name = "custom_source"
path = "examples/custom_source.rs"
required-features = ["std"]
[[example]]
name = "dead_letter"
path = "examples/dead_letter.rs"
required-features = ["std"]
[[example]]
name = "etl"
path = "examples/etl.rs"
required-features = ["std"]
[[example]]
name = "threaded"
path = "examples/threaded.rs"
required-features = ["std"]
[[example]]
name = "windowing"
path = "examples/windowing.rs"
required-features = ["std"]
[[test]]
name = "dead_letter"
path = "tests/dead_letter.rs"
[[test]]
name = "driver_trait"
path = "tests/driver_trait.rs"
[[test]]
name = "pipeline"
path = "tests/pipeline.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "window"
path = "tests/window.rs"
[[bench]]
name = "pipeline"
path = "benches/pipeline.rs"
harness = false
required-features = ["std"]
[dependencies]
[dev-dependencies.proptest]
version = "1"
features = ["std"]
default-features = false
[profile.release]
opt-level = 3
lto = "thin"