Skip to content

Commit 741f1df

Browse files
committed
Auto merge of #106704 - ecnelises:big_archive, r=bjorn3
Support AIX-style archive type Reading facility of AIX big archive has been supported by `object` since 0.30.0. Writing facility of AIX big archive has already been supported by `ar_archive_writer`, but we need to bump the version to support the new archive type enum.
2 parents 0ee4774 + 90186f5 commit 741f1df

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

backtrace

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 07872f28cd8a65c3c7428811548dc85f1f2fb05b
1+
Subproject commit 8ad84ca5ad88ade697637387e7cb4d7c3cf4bde8

std/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ hashbrown = { version = "0.12", default-features = false, features = ['rustc-dep
2323
std_detect = { path = "../stdarch/crates/std_detect", default-features = false, features = ['rustc-dep-of-std'] }
2424

2525
# Dependencies of the `backtrace` crate
26-
addr2line = { version = "0.17.0", optional = true, default-features = false }
26+
addr2line = { version = "0.19.0", optional = true, default-features = false }
2727
rustc-demangle = { version = "0.1.21", features = ['rustc-dep-of-std'] }
28-
miniz_oxide = { version = "0.5.0", optional = true, default-features = false }
28+
miniz_oxide = { version = "0.6.0", optional = true, default-features = false }
2929
[dependencies.object]
30-
version = "0.29.0"
30+
version = "0.30.0"
3131
optional = true
3232
default-features = false
3333
features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive']

0 commit comments

Comments
 (0)