mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-28 00:00:11 +02:00
Historically, logging has been added haphazardly. Here, we entirely remove logging as none of it is particularly useful. In the future, we will add tracing back in order to expose useful data to the user of Tokio.
53 lines
1.6 KiB
TOML
53 lines
1.6 KiB
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.6"
|
|
edition = "2018"
|
|
documentation = "https://docs.rs/tokio-executor/0.2.0-alpha.6/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]
|
|
blocking = ["tokio-sync", "lazy_static"]
|
|
current-thread = ["crossbeam-channel"]
|
|
thread-pool = ["num_cpus"]
|
|
|
|
[dependencies]
|
|
futures-util-preview = { version = "=0.3.0-alpha.19", features = ["channel"] }
|
|
tokio-sync = { version = "=0.2.0-alpha.6", optional = true, path = "../tokio-sync" }
|
|
|
|
# current-thread dependencies
|
|
crossbeam-channel = { version = "0.3.8", optional = true }
|
|
|
|
# threadpool dependencies
|
|
num_cpus = { version = "1.2", optional = true }
|
|
|
|
# blocking
|
|
futures-core-preview = { version = "=0.3.0-alpha.19", optional = true }
|
|
lazy_static = { version = "1", optional = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "=0.2.0-alpha.6", path = "../tokio" }
|
|
tokio-sync = { version = "=0.2.0-alpha.6", path = "../tokio-sync" }
|
|
tokio-test = { version = "=0.2.0-alpha.6", path = "../tokio-test" }
|
|
|
|
futures-core-preview = "=0.3.0-alpha.19"
|
|
loom = { version = "0.2.9", features = ["futures", "checkpoint"] }
|
|
rand = "0.7"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|