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-util"
16version = "0.3.13"
17authors = ["Alex Crichton <alex@alexcrichton.com>"]
18description = "Common utilities and extension traits for the futures-rs library.\n"
19homepage = "https://rust-lang.github.io/futures-rs"
20documentation = "https://docs.rs/futures-util/0.3"
21license = "MIT OR Apache-2.0"
22repository = "https://github.com/rust-lang/futures-rs"
23[package.metadata.docs.rs]
24all-features = true
25rustdoc-args = ["--cfg", "docsrs"]
26[dependencies.futures-channel]
27version = "0.3.13"
28features = ["std"]
29optional = true
30default-features = false
31
32[dependencies.futures-core]
33version = "0.3.13"
34default-features = false
35
36[dependencies.futures-io]
37version = "0.3.13"
38features = ["std"]
39optional = true
40default-features = false
41
42[dependencies.futures-macro]
43version = "=0.3.13"
44optional = true
45default-features = false
46
47[dependencies.futures-sink]
48version = "0.3.13"
49optional = true
50default-features = false
51
52[dependencies.futures-task]
53version = "0.3.13"
54default-features = false
55
56[dependencies.futures_01]
57version = "0.1.25"
58optional = true
59package = "futures"
60
61[dependencies.memchr]
62version = "2.2"
63optional = true
64
65[dependencies.pin-project-lite]
66version = "0.2.4"
67
68[dependencies.pin-utils]
69version = "0.1.0"
70
71[dependencies.proc-macro-hack]
72version = "0.5.19"
73optional = true
74
75[dependencies.proc-macro-nested]
76version = "0.1.2"
77optional = true
78
79[dependencies.slab]
80version = "0.4.2"
81optional = true
82
83[dependencies.tokio-io]
84version = "0.1.9"
85optional = true
86[dev-dependencies.tokio]
87version = "0.1.11"
88
89[features]
90alloc = ["futures-core/alloc", "futures-task/alloc"]
91async-await = []
92async-await-macro = ["async-await", "futures-macro", "proc-macro-hack", "proc-macro-nested"]
93bilock = []
94cfg-target-has-atomic = ["futures-core/cfg-target-has-atomic", "futures-task/cfg-target-has-atomic"]
95channel = ["std", "futures-channel"]
96compat = ["std", "futures_01"]
97default = ["std", "async-await", "async-await-macro"]
98io = ["std", "futures-io", "memchr"]
99io-compat = ["io", "compat", "tokio-io"]
100read-initializer = ["io", "futures-io/read-initializer", "futures-io/unstable"]
101sink = ["futures-sink"]
102std = ["alloc", "futures-core/std", "futures-task/std", "slab"]
103unstable = ["futures-core/unstable", "futures-task/unstable"]
104write-all-vectored = ["io"]
105