blob: 55f292dbbd7f9ccd52dacf55ae3ede52730a4d2e [file] [log] [blame]
Jason Macnak09c36882020-04-01 16:22:56 +00001[package]
2name = "futures-channel"
3edition = "2018"
4version = "0.3.4"
5authors = ["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"
9documentation = "https://docs.rs/futures-channel/0.3.0"
10description = """
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]
27futures-core = { path = "../futures-core", version = "0.3.4", default-features = false }
28futures-sink = { path = "../futures-sink", version = "0.3.4", default-features = false, optional = true }
29
30[package.metadata.docs.rs]
31all-features = true