Skip to content

Commit abc46f4

Browse files
Rollup merge of rust-lang#159345 - cuviper:std-deps, r=Darksonn
std: upgrade `addr2line`, `object`, `miniz_oxide` The `addr2line` upgrade also upgrades `gimli`, and we need a new `unwinding` to align on that. No code changes are required. See also rust-lang/backtrace-rs#765, but since `std` uses that as a `#[path] mod backtrace_rs`, we don't need to wait for the crate update.
2 parents ed2989e + 08bda6d commit abc46f4

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

library/Cargo.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ version = 4
44

55
[[package]]
66
name = "addr2line"
7-
version = "0.25.1"
7+
version = "0.27.0"
88
source = "registry+https://github.com/rust-lang/crates.io-index"
9-
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
9+
checksum = "efe1709241908a54ef1925c6018f41d3f523d0cfe174719761eb39e7b7bf086a"
1010
dependencies = [
1111
"gimli",
1212
"rustc-std-workspace-alloc",
@@ -115,9 +115,9 @@ dependencies = [
115115

116116
[[package]]
117117
name = "gimli"
118-
version = "0.32.3"
118+
version = "0.34.0"
119119
source = "registry+https://github.com/rust-lang/crates.io-index"
120-
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
120+
checksum = "1033caf0b349c518623b5396bfb2cf0bddf44f0306d543a250e5743297aafd10"
121121
dependencies = [
122122
"rustc-std-workspace-alloc",
123123
"rustc-std-workspace-core",
@@ -164,9 +164,9 @@ dependencies = [
164164

165165
[[package]]
166166
name = "miniz_oxide"
167-
version = "0.8.9"
167+
version = "0.9.1"
168168
source = "registry+https://github.com/rust-lang/crates.io-index"
169-
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
169+
checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
170170
dependencies = [
171171
"adler2",
172172
"rustc-std-workspace-alloc",
@@ -185,9 +185,9 @@ dependencies = [
185185

186186
[[package]]
187187
name = "object"
188-
version = "0.37.3"
188+
version = "0.39.1"
189189
source = "registry+https://github.com/rust-lang/crates.io-index"
190-
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
190+
checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
191191
dependencies = [
192192
"memchr",
193193
"rustc-std-workspace-alloc",
@@ -390,9 +390,9 @@ dependencies = [
390390

391391
[[package]]
392392
name = "unwinding"
393-
version = "0.2.8"
393+
version = "0.2.10"
394394
source = "registry+https://github.com/rust-lang/crates.io-index"
395-
checksum = "60612c845ef41699f39dc8c5391f252942c0a88b7d15da672eff0d14101bbd6d"
395+
checksum = "4b134ada16dda9e435abe2a6d76a01d497bc60707357845a15f9b0ed42dc88ce"
396396
dependencies = [
397397
"gimli",
398398
"rustc-std-workspace-core",

library/std/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ std_detect = { path = "../std_detect", public = true }
2929
rustc-demangle = { version = "0.1.28", features = ['rustc-dep-of-std'] }
3030

3131
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]
32-
miniz_oxide = { version = "0.8.0", optional = true, default-features = false }
33-
addr2line = { version = "0.25.0", optional = true, default-features = false }
32+
miniz_oxide = { version = "0.9.0", optional = true, default-features = false }
33+
addr2line = { version = "0.27.0", optional = true, default-features = false }
3434

3535
[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
3636
libc = { version = "0.2.185", default-features = false, features = [
3737
'rustc-dep-of-std',
3838
], public = true }
3939

4040
[target.'cfg(all(not(target_os = "aix"), not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))))'.dependencies]
41-
object = { version = "0.37.1", default-features = false, optional = true, features = [
41+
object = { version = "0.39", default-features = false, optional = true, features = [
4242
'read_core',
4343
'elf',
4444
'macho',
@@ -48,7 +48,7 @@ object = { version = "0.37.1", default-features = false, optional = true, featur
4848
] }
4949

5050
[target.'cfg(target_os = "aix")'.dependencies]
51-
object = { version = "0.37.1", default-features = false, optional = true, features = [
51+
object = { version = "0.39", default-features = false, optional = true, features = [
5252
'read_core',
5353
'xcoff',
5454
'unaligned',

0 commit comments

Comments
 (0)