Skip to content

Commit 4eb5225

Browse files
committed
Auto merge of #111413 - workingjubilee:bump-object-0-31-1, r=MarkSimulacrum
Bump object and thorin-dwp Required to fix watchOS breakage.
2 parents 6d1bf73 + 7156ff6 commit 4eb5225

File tree

6 files changed

+47
-18
lines changed

6 files changed

+47
-18
lines changed

Cargo.lock

+39-12
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,11 @@ checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602"
154154

155155
[[package]]
156156
name = "ar_archive_writer"
157-
version = "0.1.3"
157+
version = "0.1.4"
158158
source = "registry+https://github.com/rust-lang/crates.io-index"
159-
checksum = "b0639441fd17a3197d1cbca8dc8768cc172a63b64b4bb6c372e8f41ed0acc9bb"
159+
checksum = "74cfb39880a59e122232cb5fb06b20b4382d58c12fa9747d16f846d38a7b094c"
160160
dependencies = [
161-
"object",
161+
"object 0.31.1",
162162
]
163163

164164
[[package]]
@@ -233,7 +233,7 @@ dependencies = [
233233
"cfg-if",
234234
"libc",
235235
"miniz_oxide",
236-
"object",
236+
"object 0.30.1",
237237
"rustc-demangle",
238238
]
239239

@@ -331,6 +331,12 @@ dependencies = [
331331
"packed_simd_2",
332332
]
333333

334+
[[package]]
335+
name = "byteorder"
336+
version = "1.4.3"
337+
source = "registry+https://github.com/rust-lang/crates.io-index"
338+
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
339+
334340
[[package]]
335341
name = "bytes"
336342
version = "1.0.1"
@@ -2365,13 +2371,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
23652371
checksum = "8d864c91689fdc196779b98dba0aceac6118594c2df6ee5d943eb6a8df4d107a"
23662372
dependencies = [
23672373
"compiler_builtins",
2374+
"memchr",
2375+
"rustc-std-workspace-alloc",
2376+
"rustc-std-workspace-core",
2377+
]
2378+
2379+
[[package]]
2380+
name = "object"
2381+
version = "0.31.1"
2382+
source = "registry+https://github.com/rust-lang/crates.io-index"
2383+
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
2384+
dependencies = [
23682385
"crc32fast",
23692386
"flate2",
23702387
"hashbrown 0.13.1",
23712388
"indexmap",
23722389
"memchr",
2373-
"rustc-std-workspace-alloc",
2374-
"rustc-std-workspace-core",
2390+
"ruzstd",
23752391
]
23762392

23772393
[[package]]
@@ -3223,7 +3239,7 @@ dependencies = [
32233239
"cstr",
32243240
"libc",
32253241
"measureme",
3226-
"object",
3242+
"object 0.31.1",
32273243
"rustc-demangle",
32283244
"rustc_ast",
32293245
"rustc_attr",
@@ -3259,7 +3275,7 @@ dependencies = [
32593275
"itertools",
32603276
"jobserver",
32613277
"libc",
3262-
"object",
3278+
"object 0.31.1",
32633279
"pathdiff",
32643280
"regex",
32653281
"rustc_arena",
@@ -4418,6 +4434,17 @@ version = "1.0.5"
44184434
source = "registry+https://github.com/rust-lang/crates.io-index"
44194435
checksum = "61b3909d758bb75c79f23d4736fac9433868679d3ad2ea7a61e3c25cfda9a088"
44204436

4437+
[[package]]
4438+
name = "ruzstd"
4439+
version = "0.3.1"
4440+
source = "registry+https://github.com/rust-lang/crates.io-index"
4441+
checksum = "9a15e661f0f9dac21f3494fe5d23a6338c0ac116a2d22c2b63010acd89467ffe"
4442+
dependencies = [
4443+
"byteorder",
4444+
"thiserror",
4445+
"twox-hash",
4446+
]
4447+
44214448
[[package]]
44224449
name = "ryu"
44234450
version = "1.0.5"
@@ -4654,7 +4681,7 @@ dependencies = [
46544681
"hermit-abi 0.3.0",
46554682
"libc",
46564683
"miniz_oxide",
4657-
"object",
4684+
"object 0.30.1",
46584685
"panic_abort",
46594686
"panic_unwind",
46604687
"profiler_builtins",
@@ -4926,13 +4953,13 @@ dependencies = [
49264953

49274954
[[package]]
49284955
name = "thorin-dwp"
4929-
version = "0.4.0"
4956+
version = "0.6.0"
49304957
source = "registry+https://github.com/rust-lang/crates.io-index"
4931-
checksum = "da8fbf660a019b6bf11ea95762041464aa9099cc293b6a66d77cea5107619671"
4958+
checksum = "98c040e1340b889d4180c64e1d787efa9c32cb1617757e101480b61238b0d927"
49324959
dependencies = [
49334960
"gimli 0.26.2",
49344961
"hashbrown 0.12.3",
4935-
"object",
4962+
"object 0.31.1",
49364963
"tracing",
49374964
]
49384965

compiler/rustc_codegen_llvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ bitflags = "1.0"
1111
cstr = "0.2"
1212
libc = "0.2"
1313
measureme = "10.0.0"
14-
object = { version = "0.30.1", default-features = false, features = [
14+
object = { version = "0.31.1", default-features = false, features = [
1515
"std",
1616
"read",
1717
] }

compiler/rustc_codegen_ssa/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ itertools = "0.10.1"
1414
tracing = "0.1"
1515
jobserver = "0.1.22"
1616
tempfile = "3.2"
17-
thorin-dwp = "0.4"
17+
thorin-dwp = "0.6"
1818
pathdiff = "0.2.0"
1919
serde_json = "1.0.59"
2020
snap = "1"
@@ -46,7 +46,7 @@ rustc_session = { path = "../rustc_session" }
4646
libc = "0.2.50"
4747

4848
[dependencies.object]
49-
version = "0.30.1"
49+
version = "0.31.1"
5050
default-features = false
5151
features = ["read_core", "elf", "macho", "pe", "unaligned", "archive", "write"]
5252

src/bootstrap/Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -488,9 +488,9 @@ dependencies = [
488488

489489
[[package]]
490490
name = "object"
491-
version = "0.29.0"
491+
version = "0.31.1"
492492
source = "registry+https://github.com/rust-lang/crates.io-index"
493-
checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
493+
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
494494
dependencies = [
495495
"memchr",
496496
]

src/bootstrap/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ filetime = "0.2"
3737
cc = "1.0.69"
3838
libc = "0.2"
3939
hex = "0.4"
40-
object = { version = "0.29.0", default-features = false, features = ["archive", "coff", "read_core", "unaligned"] }
40+
object = { version = "0.31.1", default-features = false, features = ["archive", "coff", "read_core", "unaligned"] }
4141
serde = "1.0.137"
4242
# Directly use serde_derive rather than through the derive feature of serde to allow building both
4343
# in parallel and to allow serde_json and toml to start building as soon as serde has been built.

src/tools/tidy/src/deps.rs

+2
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
117117
"autocfg",
118118
"bitflags",
119119
"block-buffer",
120+
"byteorder", // via ruzstd in object in thorin-dwp
120121
"cc",
121122
"cfg-if",
122123
"chalk-derive",
@@ -217,6 +218,7 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
217218
"rustc-rayon",
218219
"rustc-rayon-core",
219220
"rustc_version",
221+
"ruzstd", // via object in thorin-dwp
220222
"ryu",
221223
"scoped-tls",
222224
"scopeguard",

0 commit comments

Comments
 (0)