[package]
edition = "2024"
name = "pipx"
version = "0.1.0"
authors = ["Selçuk Çukur <hello@selcukcukur.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Composable pipelines for Rust with synchronous and asynchronous execution, middleware-style processing, and predictable data flow."
documentation = "https://docs.rs/pipx"
readme = "readme.md"
keywords = [
"pipeline",
"pipe",
"rust",
"pipx",
"macros",
]
categories = [
"rust-patterns",
"data-structures",
"asynchronous",
"value-formatting",
]
license = "MIT"
repository = "https://github.com/selcukcukur/pipx"
[features]
async = [
"async-trait",
"tokio",
]
default = []
full = [
"async",
"macros",
]
macros = ["pipx-macros"]
[lib]
name = "pipx"
path = "src/lib.rs"
[[example]]
name = "actix_web_adapter"
path = "examples/actix_web_adapter.rs"
[[example]]
name = "async_jobs"
path = "examples/async_jobs.rs"
required-features = ["async"]
[[example]]
name = "axum_adapter"
path = "examples/axum_adapter.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "data_validation"
path = "examples/data_validation.rs"
[[example]]
name = "gpu_wgpu_pipeline"
path = "examples/gpu_wgpu_pipeline.rs"
[[example]]
name = "middleware_auth"
path = "examples/middleware_auth.rs"
[[test]]
name = "async_pipeline"
path = "tests/async_pipeline.rs"
[[test]]
name = "macro_attributes"
path = "tests/macro_attributes.rs"
[[test]]
name = "pipeline"
path = "tests/pipeline.rs"
[[test]]
name = "pipeline_stress"
path = "tests/pipeline_stress.rs"
[[test]]
name = "sync_pipeline_comprehensive"
path = "tests/sync_pipeline_comprehensive.rs"
[[bench]]
name = "async_pipeline"
path = "benches/async_pipeline.rs"
harness = false
required-features = ["async"]
[[bench]]
name = "async_pipeline_transform"
path = "benches/async_pipeline_transform.rs"
harness = false
required-features = ["async"]
[[bench]]
name = "pipeline"
path = "benches/pipeline.rs"
harness = false
[[bench]]
name = "pipeline_transform"
path = "benches/pipeline_transform.rs"
harness = false
[dependencies.async-trait]
version = "0"
optional = true
[dependencies.pipx-macros]
version = "0.1.0"
optional = true
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
optional = true
[dev-dependencies.criterion]
version = "0.8.2"