Skip to content

Commit 1ec8045

Browse files
committed
Upgrade the standard library object version
0.37.0 is a semver-breaking release but the only breakage is in `elf::R_RISCV_GNU_*` and `pe::IMAGE_WEAK_EXTERN_*` constants, as well as Mach-O dyld. This API is not used by `std`, so we should be fine to upgrade. This new version also includes functionality for parsing Wasm object files that we may eventually like to make use of. Also includes the minor bump from 0.37.0 to 0.37.1 to help [1]. Changelog: https://github.com/gimli-rs/object/blob/master/CHANGELOG.md#0370 [1]: #142265
1 parent 100199c commit 1ec8045

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

library/Cargo.lock

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,10 @@ dependencies = [
157157

158158
[[package]]
159159
name = "memchr"
160-
version = "2.7.4"
160+
version = "2.7.5"
161161
source = "registry+https://github.com/rust-lang/crates.io-index"
162-
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
162+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
163163
dependencies = [
164-
"compiler_builtins",
165164
"rustc-std-workspace-core",
166165
]
167166

@@ -179,11 +178,10 @@ dependencies = [
179178

180179
[[package]]
181180
name = "object"
182-
version = "0.36.7"
181+
version = "0.37.1"
183182
source = "registry+https://github.com/rust-lang/crates.io-index"
184-
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
183+
checksum = "03fd943161069e1768b4b3d050890ba48730e590f57e56d4aa04e7e090e61b4a"
185184
dependencies = [
186-
"compiler_builtins",
187185
"memchr",
188186
"rustc-std-workspace-alloc",
189187
"rustc-std-workspace-core",

library/std/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ libc = { version = "0.2.172", default-features = false, features = [
4040
], public = true }
4141

4242
[target.'cfg(all(not(target_os = "aix"), not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))))'.dependencies]
43-
object = { version = "0.36.0", default-features = false, optional = true, features = [
43+
object = { version = "0.37.1", default-features = false, optional = true, features = [
4444
'read_core',
4545
'elf',
4646
'macho',
@@ -50,7 +50,7 @@ object = { version = "0.36.0", default-features = false, optional = true, featur
5050
] }
5151

5252
[target.'cfg(target_os = "aix")'.dependencies]
53-
object = { version = "0.36.0", default-features = false, optional = true, features = [
53+
object = { version = "0.37.1", default-features = false, optional = true, features = [
5454
'read_core',
5555
'xcoff',
5656
'unaligned',

0 commit comments

Comments
 (0)