-
Notifications
You must be signed in to change notification settings - Fork 636
/
Cargo.toml
34 lines (29 loc) · 1.35 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "futures-test"
version = "0.4.0-alpha.0"
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 = "=1.0.0-alpha.0", path = "../futures-core", default-features = false }
futures-task = { version = "=0.4.0-alpha.0", path = "../futures-task", default-features = false }
futures-io = { version = "0.3.31", path = "../futures-io", default-features = false }
futures-util = { version = "=0.4.0-alpha.0", path = "../futures-util", default-features = false }
futures-executor = { version = "=0.4.0-alpha.0", path = "../futures-executor", default-features = false }
futures-sink = { version = "=0.4.0-alpha.0", path = "../futures-sink", default-features = false }
futures-macro = { version = "=0.4.0-alpha.0", path = "../futures-macro", 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
[lints]
workspace = true