tracing/Cargo.toml
David Barsky b4a0cae4d7 chore: move tracing-opentelemetry to its own repo (#2523)
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.)
2023-04-21 16:59:51 -07:00

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"
]