mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-10-02 15:24:47 +00:00

## Motivation It looks like Rust 1.43's version of clippy added a new lint for redundant `use` statements with just a crate name. These are unnecessary because the root module of an external crate is always available without imports. Apparently, `tracing-log`, `tracing-subscriber`, `tracing`, and `tracing-tower` all had some redundant `use` statements, which clippy now warns us about. ## Solution This PR removes them. Signed-off-by: Eliza Weisman <eliza@buoyant.io>