[package]
edition = "2021"
rust-version = "1.78"
name = "atomr-streams"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed reactive streams DSL for atomr — Source / Flow / Sink, junctions, framing, kill switches, hubs, stream refs."
homepage = "https://github.com/rustakka/atomr"
documentation = "https://docs.rs/atomr-streams"
readme = "README.md"
keywords = [
"actor",
"streams",
"reactive",
"async",
]
categories = [
"concurrency",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/rustakka/atomr"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "atomr_streams"
path = "src/lib.rs"
[[test]]
name = "flow_operator_specs"
path = "tests/flow_operator_specs.rs"
[[test]]
name = "graph_specs"
path = "tests/graph_specs.rs"
[[test]]
name = "hub_specs"
path = "tests/hub_specs.rs"
[[test]]
name = "queue_restart_specs"
path = "tests/queue_restart_specs.rs"
[[test]]
name = "substream_specs"
path = "tests/substream_specs.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.atomr-core]
version = "0.3.1"
[dependencies.bytes]
version = "1"
[dependencies.futures]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
[dependencies.parking_lot]
version = "0.12"
[dependencies.pin-project-lite]
version = "0.2"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1.39"
features = ["full"]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
todo = "deny"
unimplemented = "deny"