about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSean Cross <sean@xobs.io>2025-04-29 09:46:32 +0800
committerSean Cross <sean@xobs.io>2025-04-29 09:46:32 +0800
commita3e16c7adca4d907b5c99d39b7ba6a4fe5f8a56b (patch)
treeb7c2c0128246ab4e8445ce64d1aacf5bfa2c7686
parentcb31a009e3e735ab08613cec2d8a5a754e65596f (diff)
downloadrust-a3e16c7adca4d907b5c99d39b7ba6a4fe5f8a56b.tar.gz
rust-a3e16c7adca4d907b5c99d39b7ba6a4fe5f8a56b.zip
unwind: bump `unwinding` dependency to 0.2.6
With a recent change to the compiler, all instances of `#[naked]` must
now be wrapped in `#[unsafe(naked)]`. The `unwinding` crate, which is
used on Xous for doing unwinding in constrained environments, needed to
be updated to handle this change.

Bump the `unwinding` dependency to 0.2.6, which performs this wrapping.

Signed-off-by: Sean Cross <sean@xobs.io>
-rw-r--r--library/Cargo.lock4
-rw-r--r--library/unwind/Cargo.toml2
2 files changed, 3 insertions, 3 deletions
diff --git a/library/Cargo.lock b/library/Cargo.lock
index f7f09a11f3a..9b620a1cf22 100644
--- a/library/Cargo.lock
+++ b/library/Cargo.lock
@@ -448,9 +448,9 @@ dependencies = [
 
 [[package]]
 name = "unwinding"
-version = "0.2.5"
+version = "0.2.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "51f06a05848f650946acef3bf525fe96612226b61f74ae23ffa4e98bfbb8ab3c"
+checksum = "8393f2782b6060a807337ff353780c1ca15206f9ba2424df18cb6e733bd7b345"
 dependencies = [
  "compiler_builtins",
  "gimli",
diff --git a/library/unwind/Cargo.toml b/library/unwind/Cargo.toml
index da60924c2b4..df43e6ae80f 100644
--- a/library/unwind/Cargo.toml
+++ b/library/unwind/Cargo.toml
@@ -22,7 +22,7 @@ cfg-if = "1.0"
 libc = { version = "0.2.140", features = ['rustc-dep-of-std'], default-features = false }
 
 [target.'cfg(target_os = "xous")'.dependencies]
-unwinding = { version = "0.2.5", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false }
+unwinding = { version = "0.2.6", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false }
 
 [features]