Files
tracing/Cargo.toml
Hayden Stainsby 3ba48bfe60 chore: fix doc issues (#3292)
There are a few warnings when building the docs causing failures on CI.

This change fixes those and adds `unsound_local_offset` as an unexpeced cfg.
2025-05-30 10:43:38 +02:00

26 lines
685 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"
]
# This will be ignored with Rust older than 1.74, but for now that's okay;
# we're only using it to fix check-cfg issues that first appeared in Rust 1.80.
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(flaky_tests)", "cfg(tracing_unstable)", "cfg(unsound_local_offset)"] }