[package]
edition = "2024"
name = "pipe-it"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight, type-safe library for building linear and concurrent processing pipelines in Rust."
readme = "README.md"
keywords = [
"pipeline",
"async",
"pipe",
"functional",
"arrows",
]
categories = [
"asynchronous",
"data-structures",
]
license = "MIT"
repository = "https://github.com/Jw-23/pipe-it"
resolver = "1"
[features]
stream = []
[lib]
name = "pipe_it"
path = "src/lib.rs"
[[example]]
name = "map_test"
path = "examples/map_test.rs"
[[example]]
name = "res_mut_test"
path = "examples/res_mut_test.rs"
[[example]]
name = "tag_test"
path = "examples/tag_test.rs"
[[bench]]
name = "cache_bench"
path = "benches/cache_bench.rs"
harness = false
[dependencies.futures]
version = "0.3"
[dependencies.pipeit-derive]
version = "0.2.2"
[dependencies.quick_cache]
version = "0.6"
[dependencies.tokio]
version = "1.0"
features = [
"sync",
"macros",
"rt",
"rt-multi-thread",
"time",
]
[dev-dependencies.criterion]
version = "0.8"
features = [
"async_tokio",
"html_reports",
]