Skip to content

Commit 07f9531

Browse files
committed
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 <[email protected]>
1 parent 5d18b1e commit 07f9531

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

Cargo.lock

+25-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
99
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
1010
dependencies = [
1111
"compiler_builtins",
12-
"gimli",
12+
"gimli 0.28.0",
1313
"rustc-std-workspace-alloc",
1414
"rustc-std-workspace-core",
1515
]
@@ -1613,6 +1613,17 @@ dependencies = [
16131613
"wasi",
16141614
]
16151615

1616+
[[package]]
1617+
name = "gimli"
1618+
version = "0.26.2"
1619+
source = "registry+https://github.com/rust-lang/crates.io-index"
1620+
checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
1621+
dependencies = [
1622+
"compiler_builtins",
1623+
"rustc-std-workspace-alloc",
1624+
"rustc-std-workspace-core",
1625+
]
1626+
16161627
[[package]]
16171628
name = "gimli"
16181629
version = "0.28.0"
@@ -5424,7 +5435,7 @@ version = "0.7.0"
54245435
source = "registry+https://github.com/rust-lang/crates.io-index"
54255436
checksum = "4db52ee8fec06e119b692ef3dd2c4cf621a99204c1b8c47407870ed050305b9b"
54265437
dependencies = [
5427-
"gimli",
5438+
"gimli 0.28.0",
54285439
"hashbrown 0.14.2",
54295440
"object",
54305441
"tracing",
@@ -5927,6 +5938,18 @@ dependencies = [
59275938
"compiler_builtins",
59285939
"core",
59295940
"libc",
5941+
"unwinding",
5942+
]
5943+
5944+
[[package]]
5945+
name = "unwinding"
5946+
version = "0.2.0"
5947+
source = "registry+https://github.com/rust-lang/crates.io-index"
5948+
checksum = "4ee215fc0991fb587275819562685254302112d0b7c8d25e635655526c0ecdc6"
5949+
dependencies = [
5950+
"compiler_builtins",
5951+
"gimli 0.26.2",
5952+
"rustc-std-workspace-core",
59305953
]
59315954

59325955
[[package]]

0 commit comments

Comments
 (0)