mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00

## Motivation The `tokio-trace` and `tokio-trace-core` crates have been renamed to `tracing` and `tracing-core`, and moved to their own repository (`tokio-rs/tracing`). ## Solution This branch removes `tokio-trace` and `tokio-trace-core` from the `tokio` repository. In addition, I've added a "Related Projects" section to the root README, which lists `tracing` (as well as `mio`, and `bytes`) as other libraries maintained by the Tokio project. I thought that this would help folks looking for `tokio-trace` here find it in its new home. In addition, it changes `tokio` to depend on `tracing-core` rather than `tokio-trace-core`. Closes #1159 Signed-off-by: Eliza Weisman <eliza@buoyant.io>
24 lines
359 B
TOML
24 lines
359 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"tokio",
|
|
# "tokio-buf",
|
|
"tokio-codec",
|
|
"tokio-current-thread",
|
|
"tokio-executor",
|
|
# "tokio-fs",
|
|
"tokio-futures",
|
|
"tokio-io",
|
|
"tokio-macros",
|
|
"tokio-reactor",
|
|
# "tokio-signal",
|
|
"tokio-sync",
|
|
"tokio-test",
|
|
"tokio-threadpool",
|
|
"tokio-timer",
|
|
"tokio-tcp",
|
|
# "tokio-tls",
|
|
"tokio-udp",
|
|
# "tokio-uds",
|
|
]
|