futures-channel 0.3.31

Channels for asynchronous communication using futures-rs.
Documentation
[[bench]]
name = "sync_mpsc"
path = "benches/sync_mpsc.rs"

[dependencies.futures-core]
default-features = false
version = "0.3.31"

[dependencies.futures-sink]
default-features = false
optional = true
version = "0.3.31"

[dev-dependencies]

[features]
alloc = ["futures-core/alloc"]
cfg-target-has-atomic = []
default = ["std"]
sink = ["futures-sink"]
std = ["alloc", "futures-core/std"]
unstable = []

[lib]
name = "futures_channel"
path = "src/lib.rs"

[lints.rust]
missing_debug_implementations = "warn"
rust_2018_idioms = "warn"
single_use_lifetimes = "warn"
unreachable_pub = "warn"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(futures_sanitizer)"]
level = "warn"
priority = 0

[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = """
Channels for asynchronous communication using futures-rs.
"""
edition = "2018"
homepage = "https://rust-lang.github.io/futures-rs"
license = "MIT OR Apache-2.0"
name = "futures-channel"
readme = "README.md"
repository = "https://github.com/rust-lang/futures-rs"
rust-version = "1.56"
version = "0.3.31"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[[test]]
name = "channel"
path = "tests/channel.rs"

[[test]]
name = "mpsc"
path = "tests/mpsc.rs"

[[test]]
name = "mpsc-close"
path = "tests/mpsc-close.rs"

[[test]]
name = "mpsc-size_hint"
path = "tests/mpsc-size_hint.rs"

[[test]]
name = "oneshot"
path = "tests/oneshot.rs"