blob: f740f965166b55510e3513180a5e5480b2e2d2f7 [file] [log] [blame]
Jason Macnak3d406bb2020-03-19 21:05:06 +00001# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
Joel Galensonbb3a5dc2021-08-09 10:29:04 -07006# to registry (e.g., crates.io) dependencies.
Jason Macnak3d406bb2020-03-19 21:05:06 +00007#
Joel Galensonbb3a5dc2021-08-09 10:29:04 -07008# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
Jason Macnak3d406bb2020-03-19 21:05:06 +000011
12[package]
13edition = "2018"
David LeGare47ef9cb2022-03-02 00:19:32 +000014rust-version = "1.45"
Jason Macnak3d406bb2020-03-19 21:05:06 +000015name = "futures"
David LeGare47ef9cb2022-03-02 00:19:32 +000016version = "0.3.21"
17description = """
18An implementation of futures and streams featuring zero allocations,
19composability, and iterator-like interfaces.
20"""
Jason Macnak3d406bb2020-03-19 21:05:06 +000021homepage = "https://rust-lang.github.io/futures-rs"
Jason Macnak3d406bb2020-03-19 21:05:06 +000022readme = "../README.md"
David LeGare47ef9cb2022-03-02 00:19:32 +000023keywords = [
24 "futures",
25 "async",
26 "future",
27]
Jason Macnak3d406bb2020-03-19 21:05:06 +000028categories = ["asynchronous"]
29license = "MIT OR Apache-2.0"
30repository = "https://github.com/rust-lang/futures-rs"
David LeGare47ef9cb2022-03-02 00:19:32 +000031
Jason Macnak3d406bb2020-03-19 21:05:06 +000032[package.metadata.docs.rs]
33all-features = true
David LeGare47ef9cb2022-03-02 00:19:32 +000034rustdoc-args = [
35 "--cfg",
36 "docsrs",
37]
Jason Macnak3d406bb2020-03-19 21:05:06 +000038
39[package.metadata.playground]
David LeGare47ef9cb2022-03-02 00:19:32 +000040features = [
41 "std",
42 "async-await",
43 "compat",
44 "io-compat",
45 "executor",
46 "thread-pool",
47]
48
Jason Macnak3d406bb2020-03-19 21:05:06 +000049[dependencies.futures-channel]
David LeGare47ef9cb2022-03-02 00:19:32 +000050version = "0.3.21"
Jason Macnak3d406bb2020-03-19 21:05:06 +000051features = ["sink"]
52default-features = false
53
54[dependencies.futures-core]
David LeGare47ef9cb2022-03-02 00:19:32 +000055version = "0.3.21"
Jason Macnak3d406bb2020-03-19 21:05:06 +000056default-features = false
57
58[dependencies.futures-executor]
David LeGare47ef9cb2022-03-02 00:19:32 +000059version = "0.3.21"
Jason Macnak3d406bb2020-03-19 21:05:06 +000060optional = true
61default-features = false
62
63[dependencies.futures-io]
David LeGare47ef9cb2022-03-02 00:19:32 +000064version = "0.3.21"
Jason Macnak3d406bb2020-03-19 21:05:06 +000065default-features = false
66
67[dependencies.futures-sink]
David LeGare47ef9cb2022-03-02 00:19:32 +000068version = "0.3.21"
Jason Macnak3d406bb2020-03-19 21:05:06 +000069default-features = false
70
71[dependencies.futures-task]
David LeGare47ef9cb2022-03-02 00:19:32 +000072version = "0.3.21"
Jason Macnak3d406bb2020-03-19 21:05:06 +000073default-features = false
74
75[dependencies.futures-util]
David LeGare47ef9cb2022-03-02 00:19:32 +000076version = "0.3.21"
Jason Macnak3d406bb2020-03-19 21:05:06 +000077features = ["sink"]
78default-features = false
David LeGare47ef9cb2022-03-02 00:19:32 +000079
Haibo Huang51d51a02021-02-09 16:59:45 -080080[dev-dependencies.assert_matches]
81version = "1.3.0"
82
83[dev-dependencies.pin-project]
84version = "1.0.1"
85
86[dev-dependencies.pin-utils]
87version = "0.1.0"
88
Joel Galenson4c85ef42021-04-01 15:51:41 -070089[dev-dependencies.static_assertions]
90version = "1"
91
Haibo Huang51d51a02021-02-09 16:59:45 -080092[dev-dependencies.tokio]
93version = "0.1.11"
Jason Macnak3d406bb2020-03-19 21:05:06 +000094
95[features]
David LeGare47ef9cb2022-03-02 00:19:32 +000096alloc = [
97 "futures-core/alloc",
98 "futures-task/alloc",
99 "futures-sink/alloc",
100 "futures-channel/alloc",
101 "futures-util/alloc",
102]
103async-await = [
104 "futures-util/async-await",
105 "futures-util/async-await-macro",
106]
Jason Macnak3d406bb2020-03-19 21:05:06 +0000107bilock = ["futures-util/bilock"]
Joel Galenson22597362021-05-19 15:06:18 -0700108cfg-target-has-atomic = []
David LeGare47ef9cb2022-03-02 00:19:32 +0000109compat = [
110 "std",
111 "futures-util/compat",
112]
113default = [
114 "std",
115 "async-await",
116 "executor",
117]
118executor = [
119 "std",
120 "futures-executor/std",
121]
122io-compat = [
123 "compat",
124 "futures-util/io-compat",
125]
126std = [
127 "alloc",
128 "futures-core/std",
129 "futures-task/std",
130 "futures-io/std",
131 "futures-sink/std",
132 "futures-util/std",
133 "futures-util/io",
134 "futures-util/channel",
135]
136thread-pool = [
137 "executor",
138 "futures-executor/thread-pool",
139]
140unstable = [
141 "futures-core/unstable",
142 "futures-task/unstable",
143 "futures-channel/unstable",
144 "futures-io/unstable",
145 "futures-util/unstable",
146]
Haibo Huang67f2b762020-05-08 19:24:38 -0700147write-all-vectored = ["futures-util/write-all-vectored"]