blob: 9a33320a1672a84ce87e345a0d8d35bb7b7c2b46 [file] [log] [blame]
Jason Macnak09c36882020-04-01 16:22:56 +00001[package]
2name = "futures-channel"
3edition = "2018"
Joel Galenson7980c2c2021-04-01 15:55:17 -07004version = "0.3.13"
Jason Macnak09c36882020-04-01 16:22:56 +00005authors = ["Alex Crichton <alex@alexcrichton.com>"]
6license = "MIT OR Apache-2.0"
7repository = "https://github.com/rust-lang/futures-rs"
8homepage = "https://rust-lang.github.io/futures-rs"
Haibo Huang09da6032021-02-09 17:02:02 -08009documentation = "https://docs.rs/futures-channel/0.3"
Jason Macnak09c36882020-04-01 16:22:56 +000010description = """
11Channels for asynchronous communication using futures-rs.
12"""
13
14[features]
15default = ["std"]
16std = ["alloc", "futures-core/std"]
17alloc = ["futures-core/alloc"]
18sink = ["futures-sink"]
19
20# Unstable features
21# These features are outside of the normal semver guarantees and require the
22# `unstable` feature as an explicit opt-in to unstable API.
23unstable = ["futures-core/unstable"]
24cfg-target-has-atomic = ["futures-core/cfg-target-has-atomic"]
25
26[dependencies]
Joel Galenson7980c2c2021-04-01 15:55:17 -070027futures-core = { path = "../futures-core", version = "0.3.13", default-features = false }
28futures-sink = { path = "../futures-sink", version = "0.3.13", default-features = false, optional = true }
Haibo Huang09da6032021-02-09 17:02:02 -080029
30[dev-dependencies]
31futures = { path = "../futures", default-features = true }
32futures-test = { path = "../futures-test", default-features = true }
Jason Macnak09c36882020-04-01 16:22:56 +000033
34[package.metadata.docs.rs]
35all-features = true
Chih-Hung Hsiehbc88f082020-10-25 23:16:20 -070036rustdoc-args = ["--cfg", "docsrs"]