Files
tokio/tokio-executor/Cargo.toml
T

31 lines
838 B
TOML
Raw Normal View History

[package]
name = "tokio-executor"
2018-03-23 10:34:42 -07:00
# When releasing to crates.io:
# - Remove path dependencies
2018-03-23 10:34:42 -07:00
# - Update html_root_url.
# - Update doc url
2019-01-06 23:25:55 -08:00
# - Cargo.toml
# - README.md
# - Update CHANGELOG.md.
2019-05-14 10:27:36 -07:00
# - Create "v0.2.x" git tag.
version = "0.2.0"
edition = "2018"
2019-03-22 13:55:48 -07:00
documentation = "https://docs.rs/tokio-executor/0.1.7/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"]
2019-05-14 10:27:36 -07:00
publish = false
[dependencies]
2019-06-24 12:34:30 -07:00
# crossbeam-utils = "0.6.2"
crossbeam-utils = { git = "https://github.com/stjepang/crossbeam", branch = "raw-parker" }
2019-03-21 14:30:18 -07:00
[dev-dependencies]
2019-06-24 12:34:30 -07:00
# tokio = { version = "0.2.0", path = "../tokio" }