[package]
edition = "2024"
name = "streamweave-attractor"
version = "0.3.0"
authors = ["Tom Wieland <tom.wieland@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Attractor pipeline as a StreamWeave graph"
homepage = "https://github.com/Industrial/streamweave-attractor"
documentation = "https://docs.rs/streamweave-attractor"
readme = "README.md"
keywords = [
"stream",
"async",
"pipeline",
"attractor",
]
categories = [
"asynchronous",
"data-structures",
]
license = "CC-BY-SA-4.0"
repository = "https://github.com/Industrial/streamweave-attractor"
[lib]
name = "streamweave_attractor"
path = "src/lib.rs"
[[bin]]
name = "run_dot"
path = "src/bin/run_dot.rs"
[[example]]
name = "simple_pipeline"
path = "examples/simple_pipeline.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "run_dot_integration"
path = "tests/run_dot_integration.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = ">=1.11.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.futures]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.streamweave]
version = "0.10.1"
[dependencies.tokio]
version = "1"
features = [
"sync",
"rt-multi-thread",
"macros",
]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.criterion]
version = "0.8"
features = ["async_tokio"]
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.tempfile]
version = "3.10"
[dev-dependencies.tokio-test]
version = "0.4.2"
[dev-dependencies.tracing-subscriber]
version = "0.3"
[lints.rust]