mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-25 00:00:18 +02:00
29 lines
689 B
TOML
29 lines
689 B
TOML
[package]
|
|||
|
|
name = "tokio-executor"
|
||
|
|||
|
|
# When releasing to crates.io:
|
||
|
|
# - Update html_root_url.
|
||
|
|
# - Update CHANGELOG.md.
|
||
|
|
# - Create "v0.1.x" git tag.
|
||
version = "0.1.2"
|
|||
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.19"
|
|||
|
|
|
||
|
|
# Futures 0.2 integration
|
||
|
|
futures2 = { version = "0.1.0", path = "../futures2", optional = true }
|
||
|
|||
|
|
[features]
|
||
|
|
unstable-futures = ["futures2"]
|
||
|
|
default = []
|