[[bench]]
harness = false
name = "stream_contention_bench"
path = "benches/stream_contention_bench.rs"
[[bench]]
name = "utils"
path = "benches/utils.rs"
[dependencies.futures-util]
version = "0.3"
[dev-dependencies.criterion]
features = ["async", "tokio"]
version = "0.5"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.static_assertions]
version = "1"
[dev-dependencies.tokio]
features = ["rt", "macros", "rt-multi-thread"]
version = "1"
[dev-dependencies.tokio-stream]
version = "0.1"
[dev-dependencies.tokio-test]
version = "0.4"
[features]
default = []
stats = []
[lib]
name = "stream_shared"
path = "src/lib.rs"
[lints.rust]
warnings = "deny"
[package]
authors = ["Ankur Mittal"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "data-structures"]
description = "A library for creating shareable streams that can be cloned and consumed by multiple consumers"
documentation = "https://docs.rs/stream_shared"
edition = "2021"
exclude = ["target/", ".git/", ".gitignore"]
keywords = ["stream", "async", "clone", "shared"]
license = "Apache-2.0"
name = "stream_shared"
readme = "README.md"
repository = "https://github.com/ankurmittal/stream-shared-rs"
version = "0.8.6"
[package.metadata.docs.rs]
features = ["stats"]