diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2025-05-08 15:03:04 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2025-06-24 19:44:35 +0000 |
| commit | 6d3ff3915e09f736bda9bc1f04fe88a3630b71a2 (patch) | |
| tree | 1bac46cf47f669719058e8bd5b0d0ce023e62aab /library/std | |
| parent | 5dfe72c1fda271e1147ac85aebf6d382145ee0c0 (diff) | |
| download | rust-6d3ff3915e09f736bda9bc1f04fe88a3630b71a2.tar.gz rust-6d3ff3915e09f736bda9bc1f04fe88a3630b71a2.zip | |
Avoid exporting panic_unwind as stdlib cargo feature
There is already panic-unwind to enable it.
Diffstat (limited to 'library/std')
| -rw-r--r-- | library/std/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index ae7107938f3..7c2a43ef207 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -93,7 +93,7 @@ backtrace = [ 'miniz_oxide/rustc-dep-of-std', ] -panic-unwind = ["panic_unwind"] +panic-unwind = ["dep:panic_unwind"] compiler-builtins-c = ["alloc/compiler-builtins-c"] compiler-builtins-mem = ["alloc/compiler-builtins-mem"] compiler-builtins-no-asm = ["alloc/compiler-builtins-no-asm"] |
