1[package]
2name = "futures-channel"
3version = "0.3.30"
4edition = "2018"
5rust-version = "1.56"
6license = "MIT OR Apache-2.0"
7repository = "https://github.com/rust-lang/futures-rs"
8homepage = "https://rust-lang.github.io/futures-rs"
9description = """
10Channels for asynchronous communication using futures-rs.
11"""
12
13[features]
14default = ["std"]
15std = ["alloc", "futures-core/std"]
16alloc = ["futures-core/alloc"]
17sink = ["futures-sink"]
18
19# These features are no longer used.
20# TODO: remove in the next major version.
21unstable = []
22cfg-target-has-atomic = []
23
24[dependencies]
25futures-core = { path = "../futures-core", version = "0.3.30", default-features = false }
26futures-sink = { path = "../futures-sink", version = "0.3.30", default-features = false, optional = true }
27
28[dev-dependencies]
29futures = { path = "../futures", default-features = true }
30futures-test = { path = "../futures-test", default-features = true }
31
32[package.metadata.docs.rs]
33all-features = true
34rustdoc-args = ["--cfg", "docsrs"]
35