Skip to content

Commit 743d005

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]: rust-lang#142265
1 parent ec817e5 commit 743d005

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

Cargo.lock

Lines changed: 4 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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)