Skip to content

Commit b62c547

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 f196dd8 commit b62c547

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
]
@@ -1590,6 +1590,17 @@ dependencies = [
15901590
"wasi",
15911591
]
15921592

1593+
[[package]]
1594+
name = "gimli"
1595+
version = "0.26.2"
1596+
source = "registry+https://github.com/rust-lang/crates.io-index"
1597+
checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
1598+
dependencies = [
1599+
"compiler_builtins",
1600+
"rustc-std-workspace-alloc",
1601+
"rustc-std-workspace-core",
1602+
]
1603+
15931604
[[package]]
15941605
name = "gimli"
15951606
version = "0.28.0"
@@ -5420,7 +5431,7 @@ version = "0.7.0"
54205431
source = "registry+https://github.com/rust-lang/crates.io-index"
54215432
checksum = "4db52ee8fec06e119b692ef3dd2c4cf621a99204c1b8c47407870ed050305b9b"
54225433
dependencies = [
5423-
"gimli",
5434+
"gimli 0.28.0",
54245435
"hashbrown 0.14.2",
54255436
"object",
54265437
"tracing",
@@ -5924,6 +5935,18 @@ dependencies = [
59245935
"compiler_builtins",
59255936
"core",
59265937
"libc",
5938+
"unwinding",
5939+
]
5940+
5941+
[[package]]
5942+
name = "unwinding"
5943+
version = "0.2.0"
5944+
source = "registry+https://github.com/rust-lang/crates.io-index"
5945+
checksum = "4ee215fc0991fb587275819562685254302112d0b7c8d25e635655526c0ecdc6"
5946+
dependencies = [
5947+
"compiler_builtins",
5948+
"gimli 0.26.2",
5949+
"rustc-std-workspace-core",
59275950
]
59285951

59295952
[[package]]

0 commit comments

Comments
 (0)