Skip to content

Commit 3ec9d8d

Browse files
Sync libstd deps with backtrace
1 parent 00b7595 commit 3ec9d8d

File tree

2 files changed

+28
-8
lines changed

2 files changed

+28
-8
lines changed

Cargo.lock

+26-6
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,18 @@ name = "addr2line"
77
version = "0.21.0"
88
source = "registry+https://github.com/rust-lang/crates.io-index"
99
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
10+
dependencies = [
11+
"gimli 0.28.1",
12+
]
13+
14+
[[package]]
15+
name = "addr2line"
16+
version = "0.22.0"
17+
source = "registry+https://github.com/rust-lang/crates.io-index"
18+
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
1019
dependencies = [
1120
"compiler_builtins",
12-
"gimli",
21+
"gimli 0.29.0",
1322
"rustc-std-workspace-alloc",
1423
"rustc-std-workspace-core",
1524
]
@@ -287,7 +296,7 @@ version = "0.3.71"
287296
source = "registry+https://github.com/rust-lang/crates.io-index"
288297
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
289298
dependencies = [
290-
"addr2line",
299+
"addr2line 0.21.0",
291300
"cc",
292301
"cfg-if",
293302
"libc",
@@ -1575,6 +1584,17 @@ dependencies = [
15751584
"stable_deref_trait",
15761585
]
15771586

1587+
[[package]]
1588+
name = "gimli"
1589+
version = "0.29.0"
1590+
source = "registry+https://github.com/rust-lang/crates.io-index"
1591+
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
1592+
dependencies = [
1593+
"compiler_builtins",
1594+
"rustc-std-workspace-alloc",
1595+
"rustc-std-workspace-core",
1596+
]
1597+
15781598
[[package]]
15791599
name = "glob"
15801600
version = "0.3.1"
@@ -3234,7 +3254,7 @@ dependencies = [
32343254
name = "run_make_support"
32353255
version = "0.0.0"
32363256
dependencies = [
3237-
"gimli",
3257+
"gimli 0.28.1",
32383258
"object 0.34.0",
32393259
"regex",
32403260
"similar",
@@ -5130,7 +5150,7 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
51305150
name = "std"
51315151
version = "0.0.0"
51325152
dependencies = [
5133-
"addr2line",
5153+
"addr2line 0.22.0",
51345154
"alloc",
51355155
"cfg-if",
51365156
"compiler_builtins",
@@ -5409,7 +5429,7 @@ version = "0.7.0"
54095429
source = "registry+https://github.com/rust-lang/crates.io-index"
54105430
checksum = "4db52ee8fec06e119b692ef3dd2c4cf621a99204c1b8c47407870ed050305b9b"
54115431
dependencies = [
5412-
"gimli",
5432+
"gimli 0.28.1",
54135433
"hashbrown",
54145434
"object 0.32.2",
54155435
"tracing",
@@ -5909,7 +5929,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
59095929
checksum = "37a19a21a537f635c16c7576f22d0f2f7d63353c1337ad4ce0d8001c7952a25b"
59105930
dependencies = [
59115931
"compiler_builtins",
5912-
"gimli",
5932+
"gimli 0.28.1",
59135933
"rustc-std-workspace-core",
59145934
]
59155935

library/std/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ hashbrown = { version = "0.14", default-features = false, features = ['rustc-dep
2424
std_detect = { path = "../stdarch/crates/std_detect", default-features = false, features = ['rustc-dep-of-std'] }
2525

2626
# Dependencies of the `backtrace` crate
27-
rustc-demangle = { version = "0.1.21", features = ['rustc-dep-of-std'] }
27+
rustc-demangle = { version = "0.1.24", features = ['rustc-dep-of-std'] }
2828

2929
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]
3030
miniz_oxide = { version = "0.7.0", optional = true, default-features = false }
31-
addr2line = { version = "0.21.0", optional = true, default-features = false }
31+
addr2line = { version = "0.22.0", optional = true, default-features = false }
3232

3333
[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
3434
libc = { version = "0.2.153", default-features = false, features = ['rustc-dep-of-std'], public = true }

0 commit comments

Comments
 (0)