mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-16 00:00:12 +02:00
22 lines
548 B
TOML
22 lines
548 B
TOML
[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]
|
|
futures = "0.1.18"
|
|
futures2 = { version = "0.1", path = "../futures2", optional = true }
|
|
|
|
[features]
|
|
unstable-futures = ["futures2"]
|
|
default = []
|