blob: f356eabd9887f9b17580189084a0f5b52a3f5637 [file] [log] [blame]
Jason Macnak09c36882020-04-01 16:22:56 +00001[package]
2name = "futures-channel"
David LeGaref7dc9c12022-03-02 00:20:44 +00003version = "0.3.21"
Jason Macnak09c36882020-04-01 16:22:56 +00004edition = "2018"
David LeGaref7dc9c12022-03-02 00:20:44 +00005rust-version = "1.45"
Jason Macnak09c36882020-04-01 16:22:56 +00006license = "MIT OR Apache-2.0"
7repository = "https://github.com/rust-lang/futures-rs"
8homepage = "https://rust-lang.github.io/futures-rs"
Jason Macnak09c36882020-04-01 16:22:56 +00009description = """
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
Joel Galensoncc0890a2021-05-19 15:09:47 -070019# These features are no longer used.
20# TODO: remove in the next major version.
21unstable = []
22cfg-target-has-atomic = []
Jason Macnak09c36882020-04-01 16:22:56 +000023
24[dependencies]
David LeGaref7dc9c12022-03-02 00:20:44 +000025futures-core = { path = "../futures-core", version = "0.3.21", default-features = false }
26futures-sink = { path = "../futures-sink", version = "0.3.21", default-features = false, optional = true }
Haibo Huang09da6032021-02-09 17:02:02 -080027
28[dev-dependencies]
29futures = { path = "../futures", default-features = true }
30futures-test = { path = "../futures-test", default-features = true }
Jason Macnak09c36882020-04-01 16:22:56 +000031
32[package.metadata.docs.rs]
33all-features = true
Chih-Hung Hsiehbc88f082020-10-25 23:16:20 -070034rustdoc-args = ["--cfg", "docsrs"]