mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-18 00:00:09 +02:00
Adds a `TypedExecutor` trait that describes how to spawn futures of a specific type. This is useful for implementing functions that are generic over an executor and wish to support both `Send` and `!Send` cases.
27 lines
434 B
TOML
27 lines
434 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"tokio",
|
|
"tokio-async-await",
|
|
"tokio-buf",
|
|
"tokio-codec",
|
|
"tokio-current-thread",
|
|
"tokio-executor",
|
|
"tokio-fs",
|
|
"tokio-io",
|
|
"tokio-reactor",
|
|
"tokio-signal",
|
|
"tokio-sync",
|
|
"tokio-threadpool",
|
|
"tokio-timer",
|
|
"tokio-tcp",
|
|
"tokio-tls",
|
|
"tokio-trace",
|
|
"tokio-trace/tokio-trace-core",
|
|
"tokio-udp",
|
|
"tokio-uds",
|
|
]
|
|
|
|
[patch.crates-io]
|
|
tokio-executor = { path = "tokio-executor" }
|