Skip to content

Commit 79ca646

Browse files
committed
Fix normalization of
From: bjorn3 <[email protected]>
1 parent 62776ab commit 79ca646

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library/std/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ backtrace = [
9090
'miniz_oxide/rustc-dep-of-std',
9191
]
9292

93-
panic-unwind = ["panic_unwind"]
94-
profiler = ["profiler_builtins"]
93+
panic-unwind = ["dep:panic_unwind"]
94+
profiler = ["dep:profiler_builtins"]
9595
compiler-builtins-c = ["alloc/compiler-builtins-c"]
9696
compiler-builtins-mem = ["alloc/compiler-builtins-mem"]
9797
compiler-builtins-no-asm = ["alloc/compiler-builtins-no-asm"]

library/sysroot/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ compiler-builtins-no-f16-f128 = ["std/compiler-builtins-no-f16-f128"]
2020
compiler-builtins-mangled-names = ["std/compiler-builtins-mangled-names"]
2121
llvm-libunwind = ["std/llvm-libunwind"]
2222
system-llvm-libunwind = ["std/system-llvm-libunwind"]
23-
panic-unwind = ["std/panic_unwind"]
23+
panic-unwind = ["std/panic-unwind"]
2424
panic_immediate_abort = ["std/panic_immediate_abort"]
2525
optimize_for_size = ["std/optimize_for_size"]
2626
profiler = ["std/profiler"]

0 commit comments

Comments
 (0)