Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
❌ Found 1 compliant commit and 3 non-compliant commits in fa7df10...12a8bb5. Commit 3470296 by @ThetaSinner is not conform to the conventional commit specification :
Commit 0c5efa9 by @ThetaSinner is not conform to the conventional commit specification :
Commit 12a8bb5 by @ThetaSinner is not conform to the conventional commit specification :
|
Replaces the deprecated
structoptcrate withclapv4 (derive feature). CLI behaviour is identical — only the parsing layer has changed.Changes
Cargo.toml: swapstructoptforclap = { version = "4", features = ["derive"] }#[derive(StructOpt)]→#[derive(Parser)]#[structopt(...)]attributes →#[arg(...)]/#[command(...)]equivalentsStructOpt::from_args()→.parse()cargo check