mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-10-02 23:34:40 +00:00

This PR fixes all reported clippy lints. In most cases I have made the suggested changes. In a few cases (e.g., `blacklisted_name` and `cognitive_complexity`) I've just silenced the warning. I can make stylistic changes or discard some of the lint fixes if preferred.
9 lines
303 B
Rust
9 lines
303 B
Rust
#[cfg(test)]
|
|
pub use self::support::*;
|
|
// This has to have the same name as the module in `tracing`.
|
|
#[path = "../../tracing/tests/support/mod.rs"]
|
|
#[cfg(test)]
|
|
// path attribute requires referenced module to have same name so allow module inception here
|
|
#[allow(clippy::module_inception)]
|
|
mod support;
|