File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ repository = "https://github.com/rust-lang/miri"
7
7
version = " 0.1.0"
8
8
default-run = " miri-script"
9
9
edition = " 2024"
10
+ rust-version = " 1.85"
10
11
11
12
[workspace ]
12
13
# We make this a workspace root so that cargo does not go looking in ../Cargo.toml for the workspace root.
Original file line number Diff line number Diff line change @@ -702,7 +702,6 @@ impl Command {
702
702
let mut early_flags = Vec :: < OsString > :: new ( ) ;
703
703
704
704
// In `dep` mode, the target is already passed via `MIRI_TEST_TARGET`
705
- #[ expect( clippy:: collapsible_if) ] // we need to wait until this is stable
706
705
if !dep {
707
706
if let Some ( target) = & target {
708
707
early_flags. push ( "--target" . into ( ) ) ;
@@ -735,7 +734,6 @@ impl Command {
735
734
// Add Miri flags
736
735
let mut cmd = cmd. args ( & miri_flags) . args ( & early_flags) . args ( & flags) ;
737
736
// For `--dep` we also need to set the target in the env var.
738
- #[ expect( clippy:: collapsible_if) ] // we need to wait until this is stable
739
737
if dep {
740
738
if let Some ( target) = & target {
741
739
cmd = cmd. env ( "MIRI_TEST_TARGET" , target) ;
You can’t perform that action at this time.
0 commit comments