blob: fae78a0edf67116d5c74734e3c2aed6d7a6773a7 [file] [log] [blame]
Jason Macnak09c36882020-04-01 16:22:56 +00001[package]
2name = "futures-channel"
3edition = "2018"
Joel Galensoncc0890a2021-05-19 15:09:47 -07004version = "0.3.15"
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
Joel Galensoncc0890a2021-05-19 15:09:47 -070020# These features are no longer used.
21# TODO: remove in the next major version.
22unstable = []
23cfg-target-has-atomic = []
Jason Macnak09c36882020-04-01 16:22:56 +000024
25[dependencies]
Joel Galensoncc0890a2021-05-19 15:09:47 -070026futures-core = { path = "../futures-core", version = "0.3.15", default-features = false }
27futures-sink = { path = "../futures-sink", version = "0.3.15", default-features = false, optional = true }
Haibo Huang09da6032021-02-09 17:02:02 -080028
29[dev-dependencies]
30futures = { path = "../futures", default-features = true }
31futures-test = { path = "../futures-test", default-features = true }
Jason Macnak09c36882020-04-01 16:22:56 +000032
33[package.metadata.docs.rs]
34all-features = true
Chih-Hung Hsiehbc88f082020-10-25 23:16:20 -070035rustdoc-args = ["--cfg", "docsrs"]