diff options
| author | Sean Cross <sean@xobs.io> | 2024-10-13 21:27:29 +0800 |
|---|---|---|
| committer | Sean Cross <sean@xobs.io> | 2024-10-13 21:27:29 +0800 |
| commit | dcdb192b554a339ce9ec418629e86847afb8ff42 (patch) | |
| tree | d6e73a512376ec072fb968e08b44e3f67fcb6e69 | |
| parent | 06bb8364aaffefb0ce67e5f5445e66ec99c1f66e (diff) | |
| download | rust-dcdb192b554a339ce9ec418629e86847afb8ff42.tar.gz rust-dcdb192b554a339ce9ec418629e86847afb8ff42.zip | |
unwind: update unwinding dependency to 0.2.3
The recent changes to naked `asm!()` macros made this unbuildable on Xous. The upstream package maintainer released 0.2.3 to fix support on newer nightly toolchains. Update the dependency to 0.2.3, which is the oldest version that works with the current nightly compiler. This closes #131602 and fixes the build on xous. Signed-off-by: Sean Cross <sean@xobs.io>
| -rw-r--r-- | library/Cargo.lock | 12 | ||||
| -rw-r--r-- | library/unwind/Cargo.toml | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/library/Cargo.lock b/library/Cargo.lock index 877ae0cc1cc..13db69e5e99 100644 --- a/library/Cargo.lock +++ b/library/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -124,9 +124,9 @@ dependencies = [ [[package]] name = "gimli" -version = "0.30.0" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2e1d97fbe9722ba9bbd0c97051c2956e726562b61f86a25a4360398a40edfc9" +checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" dependencies = [ "compiler_builtins", "rustc-std-workspace-alloc", @@ -406,12 +406,12 @@ dependencies = [ [[package]] name = "unwinding" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc55842d0db6329a669d55a623c674b02d677b16bfb2d24857d4089d41eba882" +checksum = "637d511437df708cee34bdec7ba2f1548d256b7acf3ff20e0a1c559f9bf3a987" dependencies = [ "compiler_builtins", - "gimli 0.30.0", + "gimli 0.31.1", "rustc-std-workspace-core", ] diff --git a/library/unwind/Cargo.toml b/library/unwind/Cargo.toml index 590de31a678..569a1b3299e 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.1", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false } +unwinding = { version = "0.2.3", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false } [features] |
