Avoid exporting panic_unwind as stdlib cargo feature

There is already panic-unwind to enable it.
This commit is contained in:
bjorn3 2025-05-08 15:03:04 +00:00
parent 5dfe72c1fd
commit 6d3ff3915e
3 changed files with 3 additions and 3 deletions

View file

@ -83,7 +83,7 @@ pub fn setup(
SysrootConfig::NoStd
} else {
SysrootConfig::WithStd {
std_features: ["panic_unwind", "backtrace"].into_iter().map(Into::into).collect(),
std_features: ["panic-unwind", "backtrace"].into_iter().map(Into::into).collect(),
}
};
let cargo_cmd = {