Skip to content

Commit a3e16c7

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

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
@@ -448,9 +448,9 @@ dependencies = [
448448

449449
[[package]]
450450
name = "unwinding"
451-
version = "0.2.5"
451+
version = "0.2.6"
452452
source = "registry+https://github.com/rust-lang/crates.io-index"
453-
checksum = "51f06a05848f650946acef3bf525fe96612226b61f74ae23ffa4e98bfbb8ab3c"
453+
checksum = "8393f2782b6060a807337ff353780c1ca15206f9ba2424df18cb6e733bd7b345"
454454
dependencies = [
455455
"compiler_builtins",
456456
"gimli",

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.5", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false }
25+
unwinding = { version = "0.2.6", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false }
2626

2727
[features]
2828

0 commit comments

Comments
 (0)