forked from tokio-rs/tokio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 820 Bytes
/
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
[package]
name = "tokio-futures"
# When releasing to crates.io:
# - Update html_root_url.
version = "0.2.0"
edition = "2018"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-futures/0.1.0"
description = """
Experimental std::future::Future and async/await support for Tokio
"""
categories = ["asynchronous"]
publish = false
[features]
# This feature comes with no promise of stability. Things will
# break with each patch release. Use at your own risk.
async-await-preview = ["futures/nightly"]
[dependencies]
futures = "0.1.23"
tokio-io = { version = "0.2.0", path = "../tokio-io" }
[dev-dependencies]
bytes = "0.4.9"
hyper = "0.12.8"
tokio = { version = "0.2.0", path = "../tokio" }