blob: 125ee8ccb2656db7f8ace35a0f9eca09cbf9c499 [file] [log] [blame]
Jason Macnakc417d3b2020-04-06 10:30:28 -07001# 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.4"
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.0"
21license = "MIT OR Apache-2.0"
22repository = "https://github.com/rust-lang/futures-rs"
23[package.metadata.docs.rs]
24all-features = true
25[dependencies.futures-channel]
26version = "0.3.4"
27features = ["std"]
28optional = true
29default-features = false
30
31[dependencies.futures-core]
32version = "0.3.4"
33default-features = false
34
35[dependencies.futures-io]
36version = "0.3.4"
37features = ["std"]
38optional = true
39default-features = false
40
41[dependencies.futures-macro]
42version = "0.3.4"
43optional = true
44default-features = false
45
46[dependencies.futures-sink]
47version = "0.3.4"
48optional = true
49default-features = false
50
51[dependencies.futures-task]
52version = "0.3.4"
53default-features = false
54
55[dependencies.futures_01]
56version = "0.1.25"
57optional = true
58package = "futures"
59
60[dependencies.memchr]
61version = "2.2"
62optional = true
63
64[dependencies.pin-utils]
65version = "0.1.0-alpha.4"
66
67[dependencies.proc-macro-hack]
68version = "0.5.9"
69optional = true
70
71[dependencies.proc-macro-nested]
72version = "0.1.2"
73optional = true
74
75[dependencies.slab]
76version = "0.4"
77optional = true
78
79[dependencies.tokio-io]
80version = "0.1.9"
81optional = true
82
83[features]
84alloc = ["futures-core/alloc", "futures-task/alloc"]
85async-await = []
86async-await-macro = ["async-await", "futures-macro", "proc-macro-hack", "proc-macro-nested"]
87bilock = []
88cfg-target-has-atomic = ["futures-core/cfg-target-has-atomic", "futures-task/cfg-target-has-atomic"]
89channel = ["std", "futures-channel"]
90compat = ["std", "futures_01"]
91default = ["std", "async-await", "async-await-macro"]
92io = ["std", "futures-io", "memchr"]
93io-compat = ["io", "compat", "tokio-io"]
94read-initializer = ["io", "futures-io/read-initializer", "futures-io/unstable"]
95sink = ["futures-sink"]
96std = ["alloc", "futures-core/std", "futures-task/std", "slab"]
97unstable = ["futures-core/unstable", "futures-task/unstable"]