about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSean Cross <sean@osdyne.com>2024-12-26 16:09:30 +0100
committerSean Cross <sean@osdyne.com>2024-12-26 16:11:44 +0100
commitf806357999179a6be4bd8ecbfd3ab330eaf60a20 (patch)
tree70a4852ac5fe772d55a80a53fc37c3e2654e66fa
parent7c002ff9a70cb84fd1a91bc7b4a0f988cfc36fca (diff)
downloadrust-f806357999179a6be4bd8ecbfd3ab330eaf60a20.tar.gz
rust-f806357999179a6be4bd8ecbfd3ab330eaf60a20.zip
unwinding: bump version to fix asm
With #80608 the `unwinding` crate no longer builds. The upstream crate
has been updated to build by manually adding directives to the naked_asm
stream.

Bump the dependency in Rust to get this newer version. This fixes the
build for Xous, and closes #134403.

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 22f6e1edf21..15ca4cbff7b 100644
--- a/library/Cargo.lock
+++ b/library/Cargo.lock
@@ -403,9 +403,9 @@ dependencies = [
 
 [[package]]
 name = "unwinding"
-version = "0.2.4"
+version = "0.2.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e2c6cb20f236dae10c69b0b45d82ef50af8b7e45c10e429e7901d26b49b4dbf3"
+checksum = "51f06a05848f650946acef3bf525fe96612226b61f74ae23ffa4e98bfbb8ab3c"
 dependencies = [
  "compiler_builtins",
  "gimli 0.31.1",
diff --git a/library/unwind/Cargo.toml b/library/unwind/Cargo.toml
index 96ddae16f0a..e13c9a06c05 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.3", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false }
+unwinding = { version = "0.2.5", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false }
 
 [features]