pipe-it 0.2.1

A lightweight, type-safe library for building linear and concurrent processing pipelines in Rust.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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",
]