Skip to content

Commit

Permalink
Fix normalization of panic-unwind and panic_unwind
Browse files Browse the repository at this point in the history
From: bjorn3 <17426603+bjorn3@users.noreply.github.com>
  • Loading branch information
tgross35 committed Aug 2, 2024
1 parent 5d11e21 commit 7446e7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions library/std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ backtrace = [
'miniz_oxide/rustc-dep-of-std',
]

panic-unwind = ["panic_unwind"]
profiler = ["profiler_builtins"]
panic-unwind = ["dep:panic_unwind"]
profiler = ["dep:profiler_builtins"]
compiler-builtins-c = ["alloc/compiler-builtins-c"]
compiler-builtins-mem = ["alloc/compiler-builtins-mem"]
compiler-builtins-no-asm = ["alloc/compiler-builtins-no-asm"]
Expand Down
2 changes: 1 addition & 1 deletion library/sysroot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ compiler-builtins-no-f16-f128 = ["std/compiler-builtins-no-f16-f128"]
compiler-builtins-mangled-names = ["std/compiler-builtins-mangled-names"]
llvm-libunwind = ["std/llvm-libunwind"]
system-llvm-libunwind = ["std/system-llvm-libunwind"]
panic-unwind = ["std/panic_unwind"]
panic-unwind = ["std/panic-unwind"]
panic_immediate_abort = ["std/panic_immediate_abort"]
optimize_for_size = ["std/optimize_for_size"]
profiler = ["std/profiler"]
Expand Down

0 comments on commit 7446e7f

Please sign in to comment.