Building any dependent crate (e.g. raindex via the submodule) surfaces:
```
warning: unused import: `command`
--> crates/cli/src/cli/mod.rs:16:32
|
16 | use clap::{Parser, Subcommand, command};
| ^^^^^^^
|
= note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
```
Trivial fix — drop `command` from the import. If it's intentional (re-exporting?), add `#[allow(unused_imports)]` with a comment.
🤖 Generated with Claude Code
Building any dependent crate (e.g. raindex via the submodule) surfaces:
```
warning: unused import: `command`
--> crates/cli/src/cli/mod.rs:16:32
|
16 | use clap::{Parser, Subcommand, command};
| ^^^^^^^
|
= note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
```
Trivial fix — drop `command` from the import. If it's intentional (re-exporting?), add `#[allow(unused_imports)]` with a comment.
🤖 Generated with Claude Code