[package]
edition = "2021"
name = "pipedream-rs"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A typed, heterogeneous event relay with observable delivery, completion tracking, and lossless message routing"
readme = "README.md"
keywords = [
"async",
"stream",
"relay",
"event",
"messaging",
]
categories = [
"asynchronous",
"data-structures",
]
license = "MIT"
repository = "https://github.com/crcn/pipedream-rs"
[lib]
name = "pipedream_rs"
path = "src/lib.rs"
[[test]]
name = "blocking_check"
path = "tests/blocking_check.rs"
[[test]]
name = "blocking_forward"
path = "tests/blocking_forward.rs"
[[test]]
name = "dropped_visibility"
path = "tests/dropped_visibility.rs"
[[test]]
name = "repro_issue"
path = "tests/repro_issue.rs"
[[test]]
name = "weak_stream_cycle"
path = "tests/weak_stream_cycle.rs"
[dependencies.async-stream]
version = "0.3"
[dependencies.dashmap]
version = "6.1"
[dependencies.futures]
version = "0.3"
[dependencies.parking_lot]
version = "0.12"
[dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
]