mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-08 00:00:22 +02: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 <[email protected]>
21 lines
768 B
TOML
21 lines
768 B
TOML
# Patch dependencies to run all tests against versions of the crate in the
|
|
# repository.
|
|
[patch.crates-io]
|
|
tokio = { path = "tokio" }
|
|
tokio-buf = { path = "tokio-buf" }
|
|
tokio-codec = { path = "tokio-codec" }
|
|
tokio-current-thread = { path = "tokio-current-thread" }
|
|
tokio-executor = { path = "tokio-executor" }
|
|
tokio-fs = { path = "tokio-fs" }
|
|
tokio-futures = { path = "tokio-futures" }
|
|
tokio-io = { path = "tokio-io" }
|
|
tokio-reactor = { path = "tokio-reactor" }
|
|
tokio-signal = { path = "tokio-signal" }
|
|
tokio-sync = { path = "tokio-sync" }
|
|
tokio-threadpool = { path = "tokio-threadpool" }
|
|
tokio-timer = { path = "tokio-timer" }
|
|
tokio-tcp = { path = "tokio-tcp" }
|
|
tokio-tls = { path = "tokio-tls" }
|
|
tokio-udp = { path = "tokio-udp" }
|
|
tokio-uds = { path = "tokio-uds" }
|