mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-19 00:00:09 +02:00
33 lines
865 B
TOML
33 lines
865 B
TOML
[package]
|
|
name = "tokio-executor"
|
|
# When releasing to crates.io:
|
|
# - Remove path dependencies
|
|
# - Update html_root_url.
|
|
# - Update doc url
|
|
# - Cargo.toml
|
|
# - Update CHANGELOG.md.
|
|
# - Create "v0.2.x" git tag.
|
|
version = "0.2.0-alpha.1"
|
|
edition = "2018"
|
|
documentation = "https://docs.rs/tokio-executor/0.2.0-alpha.1/tokio_executor"
|
|
repository = "https://github.com/tokio-rs/tokio"
|
|
homepage = "https://github.com/tokio-rs/tokio"
|
|
license = "MIT"
|
|
authors = ["Tokio Contributors <[email protected]>"]
|
|
description = """
|
|
Future execution primitives
|
|
"""
|
|
keywords = ["futures", "tokio"]
|
|
categories = ["concurrency", "asynchronous"]
|
|
|
|
[features]
|
|
current-thread = ["crossbeam-channel"]
|
|
|
|
[dependencies]
|
|
crossbeam-channel = { version = "0.3.8", optional = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "=0.2.0-alpha.1", path = "../tokio" }
|
|
|
|
futures-core-preview = "=0.3.0-alpha.18"
|