]> git.proxmox.com Git - rustc.git/blame - vendor/futures/Cargo.toml
New upstream version 1.69.0+dfsg1
[rustc.git] / vendor / futures / Cargo.toml
CommitLineData
5099ac24
FG
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 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.
11
12[package]
13edition = "2018"
14rust-version = "1.45"
15name = "futures"
16version = "0.3.19"
17description = "An implementation of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n"
18homepage = "https://rust-lang.github.io/futures-rs"
19readme = "../README.md"
20keywords = ["futures", "async", "future"]
21categories = ["asynchronous"]
22license = "MIT OR Apache-2.0"
23repository = "https://github.com/rust-lang/futures-rs"
24[package.metadata.docs.rs]
25all-features = true
26rustdoc-args = ["--cfg", "docsrs"]
27
28[package.metadata.playground]
29features = ["std", "async-await", "compat", "io-compat", "executor", "thread-pool"]
30[dependencies.futures-channel]
31version = "0.3.19"
32features = ["sink"]
33default-features = false
34
35[dependencies.futures-core]
36version = "0.3.19"
37default-features = false
38
39[dependencies.futures-executor]
40version = "0.3.19"
41optional = true
42default-features = false
43
44[dependencies.futures-io]
45version = "0.3.19"
46default-features = false
47
48[dependencies.futures-sink]
49version = "0.3.19"
50default-features = false
51
52[dependencies.futures-task]
53version = "0.3.19"
54default-features = false
55
56[dependencies.futures-util]
57version = "0.3.19"
58features = ["sink"]
59default-features = false
60[dev-dependencies.assert_matches]
61version = "1.3.0"
62
63[dev-dependencies.pin-project]
64version = "1.0.1"
65
66[dev-dependencies.pin-utils]
67version = "0.1.0"
68
69[dev-dependencies.static_assertions]
70version = "1"
71
72[dev-dependencies.tokio]
73version = "0.1.11"
74
75[features]
76alloc = ["futures-core/alloc", "futures-task/alloc", "futures-sink/alloc", "futures-channel/alloc", "futures-util/alloc"]
77async-await = ["futures-util/async-await", "futures-util/async-await-macro"]
78bilock = ["futures-util/bilock"]
79cfg-target-has-atomic = []
80compat = ["std", "futures-util/compat"]
81default = ["std", "async-await", "executor"]
82executor = ["std", "futures-executor/std"]
83io-compat = ["compat", "futures-util/io-compat"]
84std = ["alloc", "futures-core/std", "futures-task/std", "futures-io/std", "futures-sink/std", "futures-util/std", "futures-util/io", "futures-util/channel"]
85thread-pool = ["executor", "futures-executor/thread-pool"]
86unstable = ["futures-core/unstable", "futures-task/unstable", "futures-channel/unstable", "futures-io/unstable", "futures-util/unstable"]
87write-all-vectored = ["futures-util/write-all-vectored"]