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.56"
15name = "futures-test"
16version = "0.3.31"
17build = false
18autobins = false
19autoexamples = false
20autotests = false
21autobenches = false
22description = """
23Common utilities for testing components built off futures-rs.
24"""
25homepage = "https://rust-lang.github.io/futures-rs"
26readme = "README.md"
27license = "MIT OR Apache-2.0"
28repository = "https://github.com/rust-lang/futures-rs"
29
30[package.metadata.docs.rs]
31all-features = true
32
33[lib]
34name = "futures_test"
35path = "src/lib.rs"
36
37[dependencies.futures-core]
38version = "0.3.31"
39default-features = false
40
41[dependencies.futures-executor]
42version = "0.3.31"
43default-features = false
44
45[dependencies.futures-io]
46version = "0.3.31"
47default-features = false
48
49[dependencies.futures-macro]
50version = "=0.3.31"
51default-features = false
52
53[dependencies.futures-sink]
54version = "0.3.31"
55default-features = false
56
57[dependencies.futures-task]
58version = "0.3.31"
59default-features = false
60
61[dependencies.futures-util]
62version = "0.3.31"
63default-features = false
64
65[dependencies.pin-project]
66version = "1.0.11"
67
68[dev-dependencies]
69
70[features]
71default = ["std"]
72std = [
73    "futures-core/std",
74    "futures-task/std",
75    "futures-io/std",
76    "futures-util/std",
77    "futures-util/io",
78    "futures-executor/std",
79]
80
81[lints.rust]
82missing_debug_implementations = "warn"
83rust_2018_idioms = "warn"
84single_use_lifetimes = "warn"
85unreachable_pub = "warn"
86
87[lints.rust.unexpected_cfgs]
88level = "warn"
89priority = 0
90check-cfg = ["cfg(futures_sanitizer)"]
91