Skip to content
/ rust Public
forked from rust-lang/rust

Commit 5a57d10

Browse files
authored
Rollup merge of rust-lang#134789 - betrusted-io:bump-unwinding-to-0.25.0, r=Mark-Simulacrum
unwinding: bump version to fix naked_asm on Xous With rust-lang#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 rust-lang#134403.
2 parents 0bfd367 + f806357 commit 5a57d10

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)