Files
tokio/tokio-executor/Cargo.toml
T

22 lines
548 B
TOML
Raw Normal View History

[package]
name = "tokio-executor"
version = "0.1.0"
documentation = "https://docs.rs/tokio-executor"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
description = """
Future execution primitives
"""
keywords = ["futures", "tokio"]
categories = ["concurrency", "asynchronous"]
[dependencies]
2018-03-08 20:15:51 -08:00
futures = "0.1.18"
2018-03-13 13:57:35 -07:00
futures2 = { version = "0.1", path = "../futures2", optional = true }
[features]
unstable-futures = ["futures2"]
default = []