1# 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
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "futures"
16version = "0.3.13"
17authors = ["Alex Crichton <alex@alexcrichton.com>"]
18description = "An implementation of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n"
19homepage = "https://rust-lang.github.io/futures-rs"
20documentation = "https://docs.rs/futures/0.3"
21readme = "../README.md"
22keywords = ["futures", "async", "future"]
23categories = ["asynchronous"]
24license = "MIT OR Apache-2.0"
25repository = "https://github.com/rust-lang/futures-rs"
26[package.metadata.docs.rs]
27all-features = true
28rustdoc-args = ["--cfg", "docsrs"]
29
30[package.metadata.playground]
31features = ["std", "async-await", "compat", "io-compat", "executor", "thread-pool"]
32[dependencies.futures-channel]
33version = "0.3.13"
34features = ["sink"]
35default-features = false
36
37[dependencies.futures-core]
38version = "0.3.13"
39default-features = false
40
41[dependencies.futures-executor]
42version = "0.3.13"
43optional = true
44default-features = false
45
46[dependencies.futures-io]
47version = "0.3.13"
48default-features = false
49
50[dependencies.futures-sink]
51version = "0.3.13"
52default-features = false
53
54[dependencies.futures-task]
55version = "0.3.13"
56default-features = false
57
58[dependencies.futures-util]
59version = "0.3.13"
60features = ["sink"]
61default-features = false
62[dev-dependencies.assert_matches]
63version = "1.3.0"
64
65[dev-dependencies.pin-project]
66version = "1.0.1"
67
68[dev-dependencies.pin-utils]
69version = "0.1.0"
70
71[dev-dependencies.static_assertions]
72version = "1"
73
74[dev-dependencies.tokio]
75version = "0.1.11"
76
77[features]
78alloc = ["futures-core/alloc", "futures-task/alloc", "futures-sink/alloc", "futures-channel/alloc", "futures-util/alloc"]
79async-await = ["futures-util/async-await", "futures-util/async-await-macro"]
80bilock = ["futures-util/bilock"]
81cfg-target-has-atomic = ["futures-core/cfg-target-has-atomic", "futures-task/cfg-target-has-atomic", "futures-channel/cfg-target-has-atomic", "futures-util/cfg-target-has-atomic"]
82compat = ["std", "futures-util/compat"]
83default = ["std", "async-await", "executor"]
84executor = ["std", "futures-executor/std"]
85io-compat = ["compat", "futures-util/io-compat"]
86read-initializer = ["futures-io/read-initializer", "futures-util/read-initializer"]
87std = ["alloc", "futures-core/std", "futures-task/std", "futures-io/std", "futures-sink/std", "futures-util/std", "futures-util/io", "futures-util/channel"]
88thread-pool = ["executor", "futures-executor/thread-pool"]
89unstable = ["futures-core/unstable", "futures-task/unstable", "futures-channel/unstable", "futures-io/unstable", "futures-util/unstable"]
90write-all-vectored = ["futures-util/write-all-vectored"]
91