-
Notifications
You must be signed in to change notification settings - Fork 633
/
Copy pathCargo.toml
43 lines (38 loc) · 1.78 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
35
36
37
38
39
40
41
42
43
cargo-features = ["rename-dependency"]
[package]
name = "futures-util-preview"
edition = "2018"
version = "0.3.0-alpha.9"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.9/futures_util"
description = """
Common utilities and extension traits for the futures-rs library.
"""
[lib]
name = "futures_util"
[features]
std = ["futures-core-preview/std", "futures-io-preview/std", "futures-sink-preview/std", "either/use_std", "slab"]
default = ["std", "futures-core-preview/either", "futures-sink-preview/either"]
compat = ["std", "futures_01"]
io-compat = ["compat", "tokio-io"]
tokio-compat = ["compat", "tokio-executor"]
bench = []
nightly = []
[dependencies]
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.9", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.9", default-features = false }
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.9", default-features = false }
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.9", default-features = false}
either = { version = "1.4", default-features = false }
slab = { version = "0.4", optional = true }
futures_01 = { version = "0.1.25", optional = true, package = "futures" }
tokio-executor = { version = "0.1.2", optional = true }
tokio-io = { version = "0.1.9", optional = true }
pin-utils = "0.1.0-alpha.3"
[dev-dependencies]
futures-preview = { path = "../futures", version = "0.3.0-alpha.9" }
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.9" }
tokio = "0.1.11"