mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-09-28 13:31:52 +00:00

This PR removes tracing-opentelemetry to a dedicated repo located at https://github.com/tokio-rs/tracing-opentelemetry. (Note that at time of writing this PR, the new repo has not be made public). We're moving tracing-opentelemetry to a dedicated repository for the following reasons: 1. opentelemetry's MSRV is higher than that of `tracing`'s. 2. more importantly, the main `tracing` repo is getting a bit unweildy and it feels unreasonable to maintain backports for crates that integrate with the larger tracing ecosystem. (https://github.com/tokio-rs/tracing-opentelemetry does not have the examples present in this repo; this will occur in a PR that will be linked from _this_ PR.)
20 lines
345 B
TOML
20 lines
345 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"tracing",
|
|
"tracing-core",
|
|
"tracing-attributes",
|
|
"tracing-error",
|
|
"tracing-flame",
|
|
"tracing-futures",
|
|
"tracing-tower",
|
|
"tracing-log",
|
|
"tracing-macros",
|
|
"tracing-mock",
|
|
"tracing-subscriber",
|
|
"tracing-serde",
|
|
"tracing-appender",
|
|
"tracing-journald",
|
|
"examples"
|
|
]
|