P0.7: Fix cargo fmt and clippy warnings for CI smoke

cargo fmt reformats dump.rs match arms; credentials.rs needs #[allow(dead_code)]
on an unused public helper.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
jedarden 2026-04-18 22:06:56 -04:00
parent 111a128278
commit 2b1ea87f3e
2 changed files with 16 additions and 16 deletions

View file

@ -63,28 +63,27 @@ pub enum DumpSubcommand {
pub async fn run(cmd: DumpSubcommand) -> Result<(), Box<dyn std::error::Error>> {
match cmd {
DumpSubcommand::Import { file, index, mode, .. } => {
Err(format!(
"Dump import is not yet implemented. See bead miroir-zc2.5 for tracking.\n\n\
DumpSubcommand::Import {
file, index, mode, ..
} => Err(format!(
"Dump import is not yet implemented. See bead miroir-zc2.5 for tracking.\n\n\
For dump compatibility information, see:\n\
docs/dump-import/compatibility-matrix.md\n\n\
Requested:\n\
File: {file}\n\
Index: {index}\n\
Index: {index:?}\n\
Mode: {mode}"
).into())
}
DumpSubcommand::Export { output, index, .. } => {
Err(format!(
"Dump export is not yet implemented. See bead miroir-qon for tracking.\n\n\
)
.into()),
DumpSubcommand::Export { output, index, .. } => Err(format!(
"Dump export is not yet implemented. See bead miroir-qon for tracking.\n\n\
Requested:\n\
Output: {output}\n\
Index: {index:?}"
).into())
}
DumpSubcommand::Analyze { file } => {
Err(format!(
"Dump analysis is not yet implemented. See bead miroir-zc2.5 for tracking.\n\n\
)
.into()),
DumpSubcommand::Analyze { file } => Err(format!(
"Dump analysis is not yet implemented. See bead miroir-zc2.5 for tracking.\n\n\
This command will analyze {file} and report:\n\
- Whether streaming mode can reconstruct the dump\n\
- Any field conflicts (e.g., existing `_miroir_shard`)\n\
@ -92,7 +91,7 @@ pub async fn run(cmd: DumpSubcommand) -> Result<(), Box<dyn std::error::Error>>
- Recommended import mode\n\n\
See compatibility matrix:\n\
docs/dump-import/compatibility-matrix.md"
).into())
}
)
.into()),
}
}

View file

@ -113,6 +113,7 @@ fn load_from_credentials_file() -> Result<Option<String>, CredentialError> {
}
/// Get the credentials file path for diagnostic messages
#[allow(dead_code)]
pub fn credentials_file_path() -> Option<PathBuf> {
let config_dir = dirs::config_dir()?;
let miroir_config_dir = config_dir.join("miroir");