From 2a533df5bd5e85cdcc3eba23a1a1545b10af1e0f Mon Sep 17 00:00:00 2001 From: Sean Cross Date: Mon, 23 Oct 2023 15:36:59 +0800 Subject: [PATCH] Cargo.lock: add unwinding to lock file Add `unwinding` as a dependency. This is required on platforms where unwinding isn't provided by llvm. Signed-off-by: Sean Cross --- Cargo.lock | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index adaac69af57..ce0583924b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5914,6 +5914,18 @@ dependencies = [ "compiler_builtins", "core", "libc", + "unwinding", +] + +[[package]] +name = "unwinding" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37a19a21a537f635c16c7576f22d0f2f7d63353c1337ad4ce0d8001c7952a25b" +dependencies = [ + "compiler_builtins", + "gimli", + "rustc-std-workspace-core", ] [[package]]