Skip to content

Commit 0260c66

Browse files
committed
Avoid exporting panic_unwind as stdlib cargo feature
There is already panic-unwind to enable it.
1 parent 511918f commit 0260c66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cargo-miri/src/setup.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pub fn setup(
8383
SysrootConfig::NoStd
8484
} else {
8585
SysrootConfig::WithStd {
86-
std_features: ["panic_unwind", "backtrace"].into_iter().map(Into::into).collect(),
86+
std_features: ["panic-unwind", "backtrace"].into_iter().map(Into::into).collect(),
8787
}
8888
};
8989
let cargo_cmd = {

0 commit comments

Comments
 (0)