blob: 9b87df669b3b151e53f832e5e5bd779deb38d812 [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"
Joel Galenson1fdff8f2021-04-01 16:17:54 -070016version = "0.3.13"
Jason Macnakc417d3b2020-04-06 10:30:28 -070017authors = ["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"
Haibo Huang5bf87962021-02-09 17:18:40 -080020documentation = "https://docs.rs/futures-util/0.3"
Jason Macnakc417d3b2020-04-06 10:30:28 -070021license = "MIT OR Apache-2.0"
22repository = "https://github.com/rust-lang/futures-rs"
23[package.metadata.docs.rs]
24all-features = true
Chih-Hung Hsiehd45e96e2020-10-25 23:16:22 -070025rustdoc-args = ["--cfg", "docsrs"]
Jason Macnakc417d3b2020-04-06 10:30:28 -070026[dependencies.futures-channel]
Joel Galenson1fdff8f2021-04-01 16:17:54 -070027version = "0.3.13"
Jason Macnakc417d3b2020-04-06 10:30:28 -070028features = ["std"]
29optional = true
30default-features = false
31
32[dependencies.futures-core]
Joel Galenson1fdff8f2021-04-01 16:17:54 -070033version = "0.3.13"
Jason Macnakc417d3b2020-04-06 10:30:28 -070034default-features = false
35
36[dependencies.futures-io]
Joel Galenson1fdff8f2021-04-01 16:17:54 -070037version = "0.3.13"
Jason Macnakc417d3b2020-04-06 10:30:28 -070038features = ["std"]
39optional = true
40default-features = false
41
42[dependencies.futures-macro]
Joel Galenson1fdff8f2021-04-01 16:17:54 -070043version = "=0.3.13"
Jason Macnakc417d3b2020-04-06 10:30:28 -070044optional = true
45default-features = false
46
47[dependencies.futures-sink]
Joel Galenson1fdff8f2021-04-01 16:17:54 -070048version = "0.3.13"
Jason Macnakc417d3b2020-04-06 10:30:28 -070049optional = true
50default-features = false
51
52[dependencies.futures-task]
Joel Galenson1fdff8f2021-04-01 16:17:54 -070053version = "0.3.13"
Jason Macnakc417d3b2020-04-06 10:30:28 -070054default-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
Haibo Huang5bf87962021-02-09 17:18:40 -080065[dependencies.pin-project-lite]
66version = "0.2.4"
Haibo Huang52627c82020-05-08 19:26:17 -070067
Jason Macnakc417d3b2020-04-06 10:30:28 -070068[dependencies.pin-utils]
Haibo Huang52627c82020-05-08 19:26:17 -070069version = "0.1.0"
Jason Macnakc417d3b2020-04-06 10:30:28 -070070
71[dependencies.proc-macro-hack]
Haibo Huang5bf87962021-02-09 17:18:40 -080072version = "0.5.19"
Jason Macnakc417d3b2020-04-06 10:30:28 -070073optional = true
74
75[dependencies.proc-macro-nested]
76version = "0.1.2"
77optional = true
78
79[dependencies.slab]
Haibo Huang52627c82020-05-08 19:26:17 -070080version = "0.4.2"
Jason Macnakc417d3b2020-04-06 10:30:28 -070081optional = true
82
83[dependencies.tokio-io]
84version = "0.1.9"
85optional = true
Haibo Huang5bf87962021-02-09 17:18:40 -080086[dev-dependencies.tokio]
87version = "0.1.11"
Jason Macnakc417d3b2020-04-06 10:30:28 -070088
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"]
Haibo Huang52627c82020-05-08 19:26:17 -0700104write-all-vectored = ["io"]