Skip to content

Commit 254a596

Browse files
committed
Auto merge of rust-lang#88151 - alexcrichton:update-backtrace, r=Mark-Simulacrum
Update the backtrace crate in libstd This commit updates the backtrace crate in libstd now that dependencies have been updated to use `memchr` from the standard library as well. This is mostly just making sure deps are up-to-date and have all the latest-and-greatest fixes and such. Closes rust-lang/backtrace-rs#432
2 parents 277255e + 6d6c717 commit 254a596

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

backtrace

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 221483ebaf45df5c956adffee2d4024e7c3b96b8
1+
Subproject commit 4f925f8d81dfa57067537217e501e1dff7433491

std/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ hashbrown = { version = "0.11", 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.14.0", optional = true, default-features = false }
26+
addr2line = { version = "0.16.0", optional = true, default-features = false }
2727
rustc-demangle = { version = "0.1.18", features = ['rustc-dep-of-std'] }
2828
miniz_oxide = { version = "0.4.0", optional = true, default-features = false }
2929
[dependencies.object]
30-
version = "0.22"
30+
version = "0.26.1"
3131
optional = true
3232
default-features = false
3333
features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive']

0 commit comments

Comments
 (0)