diff options
| author | Sean Cross <sean@xobs.io> | 2023-10-23 15:36:59 +0800 |
|---|---|---|
| committer | Sean Cross <sean@xobs.io> | 2023-11-16 15:23:09 +0800 |
| commit | 2a533df5bd5e85cdcc3eba23a1a1545b10af1e0f (patch) | |
| tree | 61adfd489ae44d9cb75dbe9b177e12e426546263 | |
| parent | bf0e0af2423f722a3c28a3bab3e90ee669d4e923 (diff) | |
| download | rust-2a533df5bd5e85cdcc3eba23a1a1545b10af1e0f.tar.gz rust-2a533df5bd5e85cdcc3eba23a1a1545b10af1e0f.zip | |
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 <sean@xobs.io>
| -rw-r--r-- | Cargo.lock | 12 |
1 files changed, 12 insertions, 0 deletions
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]] |
