Skip to content

Commit 26dff28

Browse files
author
Carolyn Zech
committed
reorder sections
put cargo sections together and at the bottom because they're less commonly used than the other options
1 parent 028fc69 commit 26dff28

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

kani-driver/src/args/mod.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -357,19 +357,19 @@ pub struct VerificationArgs {
357357
#[arg(long, hide = true)]
358358
pub write_json_symtab: bool,
359359

360-
/// Arguments to pass down to Cargo
361360
#[command(flatten)]
362-
pub cargo: CargoCommonArgs,
361+
pub checks: CheckArgs,
363362

364363
#[command(flatten)]
365-
pub checks: CheckArgs,
364+
pub common_args: CommonArgs,
366365

367-
/// Arguments used to select Cargo target.
366+
/// Arguments to pass down to Cargo
368367
#[command(flatten)]
369-
pub target: CargoTargetArgs,
368+
pub cargo: CargoCommonArgs,
370369

370+
/// Arguments used to select Cargo target.
371371
#[command(flatten)]
372-
pub common_args: CommonArgs,
372+
pub target: CargoTargetArgs,
373373
}
374374

375375
impl VerificationArgs {

0 commit comments

Comments
 (0)