Skip to content

Commit

Permalink
Merge pull request #522 from lnicola/bump-object
Browse files Browse the repository at this point in the history
Bump object to 0.31
  • Loading branch information
workingjubilee committed Jun 21, 2023
2 parents 102fedf + bf45147 commit 59b8475
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ addr2line = { version = "0.20.0", default-features = false }
miniz_oxide = { version = "0.7.0", default-features = false }

[dependencies.object]
version = "0.30.0"
version = "0.31.0"
default-features = false
features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive']

Expand Down
2 changes: 1 addition & 1 deletion crates/as-if-std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ addr2line = { version = "0.20.0", default-features = false, optional = true }
miniz_oxide = { version = "0.4.0", default-features = false }

[dependencies.object]
version = "0.28"
version = "0.31"
default-features = false
optional = true
features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive']
Expand Down
1 change: 1 addition & 0 deletions src/symbolize/gimli/coff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ use super::{gimli, Context, Endian, EndianSlice, Mapping, Path, Stash, Vec};
use alloc::sync::Arc;
use core::convert::TryFrom;
use object::pe::{ImageDosHeader, ImageSymbol};
use object::read::coff::ImageSymbol as _;
use object::read::pe::{ImageNtHeaders, ImageOptionalHeader, SectionTable};
use object::read::StringTable;
use object::LittleEndian as LE;
Expand Down

0 comments on commit 59b8475

Please sign in to comment.