| [package] |
| name = "futures-test" |
| version = "0.3.29" |
| edition = "2018" |
| rust-version = "1.56" |
| license = "MIT OR Apache-2.0" |
| repository = "https://github.com/rust-lang/futures-rs" |
| homepage = "https://rust-lang.github.io/futures-rs" |
| description = """ |
| Common utilities for testing components built off futures-rs. |
| """ |
| |
| [dependencies] |
| futures-core = { version = "0.3.29", path = "../futures-core", default-features = false } |
| futures-task = { version = "0.3.29", path = "../futures-task", default-features = false } |
| futures-io = { version = "0.3.29", path = "../futures-io", default-features = false } |
| futures-util = { version = "0.3.29", path = "../futures-util", default-features = false } |
| futures-executor = { version = "0.3.29", path = "../futures-executor", default-features = false } |
| futures-sink = { version = "0.3.29", path = "../futures-sink", default-features = false } |
| futures-macro = { version = "=0.3.29", path = "../futures-macro", default-features = false } |
| pin-utils = { version = "0.1.0", default-features = false } |
| pin-project = "1.0.11" |
| |
| [dev-dependencies] |
| futures = { path = "../futures", default-features = false, features = ["std", "executor"] } |
| |
| [features] |
| default = ["std"] |
| std = ["futures-core/std", "futures-task/std", "futures-io/std", "futures-util/std", "futures-util/io", "futures-executor/std"] |
| |
| [package.metadata.docs.rs] |
| all-features = true |