mirror of
https://github.com/tokio-rs/tracing.git
synced 2026-03-19 06:12:30 +00:00
## Motivation There has been interest around publishing tracing-mock to crates.io for some time. In order to make this possible, it needs to be cleaned up. ## Solution There are some test utils in the `tracing-mock` crate which wouldn't make sense to publish. They provide test futures that are needed in multiple `tracing-*` crates, but would likely not be needed outside that context. This change moves that functionality into a separate `tracing-test` crate, which should never be published to crates.io. Refs: #539 Co-authored-by: David Barsky <me@davidbarsky.com>
21 lines
379 B
TOML
21 lines
379 B
TOML
[workspace]
|
|
resolver = "2"
|
|
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-test",
|
|
"tracing-appender",
|
|
"tracing-journald",
|
|
"examples"
|
|
]
|