Skip to content

Commit f806357

Browse files
committed
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 <[email protected]>
1 parent 7c002ff commit f806357

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library/Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -403,9 +403,9 @@ dependencies = [
403403

404404
[[package]]
405405
name = "unwinding"
406-
version = "0.2.4"
406+
version = "0.2.5"
407407
source = "registry+https://github.com/rust-lang/crates.io-index"
408-
checksum = "e2c6cb20f236dae10c69b0b45d82ef50af8b7e45c10e429e7901d26b49b4dbf3"
408+
checksum = "51f06a05848f650946acef3bf525fe96612226b61f74ae23ffa4e98bfbb8ab3c"
409409
dependencies = [
410410
"compiler_builtins",
411411
"gimli 0.31.1",

library/unwind/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ cfg-if = "1.0"
2222
libc = { version = "0.2.140", features = ['rustc-dep-of-std'], default-features = false }
2323

2424
[target.'cfg(target_os = "xous")'.dependencies]
25-
unwinding = { version = "0.2.3", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false }
25+
unwinding = { version = "0.2.5", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false }
2626

2727
[features]
2828

0 commit comments

Comments
 (0)