Skip to content

Commit

Permalink
Update addr2line and object dependencies (#557)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc committed Aug 18, 2023
1 parent 2efc591 commit 40410b7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ jobs:
with:
submodules: true
- name: Install Rust
run: rustup update 1.55.0 && rustup default 1.55.0
run: rustup update 1.65.0 && rustup default 1.65.0
- run: cargo build

miri:
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ rustc-serialize = { version = "0.3", optional = true }
# Optionally demangle C++ frames' symbols in backtraces.
cpp_demangle = { default-features = false, version = "0.4.0", optional = true, features = ["alloc"] }

addr2line = { version = "0.20.0", default-features = false }
addr2line = { version = "0.21.0", default-features = false }
miniz_oxide = { version = "0.7.0", default-features = false }

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

Expand Down
4 changes: 2 additions & 2 deletions crates/as-if-std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ bench = false
cfg-if = "1.0"
rustc-demangle = "0.1.21"
libc = { version = "0.2.146", default-features = false }
addr2line = { version = "0.20.0", default-features = false, optional = true }
addr2line = { version = "0.21.0", default-features = false, optional = true }
miniz_oxide = { version = "0.7", default-features = false }

[dependencies.object]
version = "0.31.1"
version = "0.32.0"
default-features = false
optional = true
features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive']
Expand Down

0 comments on commit 40410b7

Please sign in to comment.