diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2021-08-18 19:44:24 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2021-08-19 07:31:49 -0700 |
| commit | 4a3e73643ab944d868a6b2bf05d2d4677cbfb35f (patch) | |
| tree | b077c4d634c66f07ecd9603412db171c45ea08e3 /library | |
| parent | 3d0774d0dc98084d25d95cc1909a8051ebbd9cb1 (diff) | |
| download | rust-4a3e73643ab944d868a6b2bf05d2d4677cbfb35f.tar.gz rust-4a3e73643ab944d868a6b2bf05d2d4677cbfb35f.zip | |
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
Diffstat (limited to 'library')
| m--------- | library/backtrace | 0 | ||||
| -rw-r--r-- | library/std/Cargo.toml | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/backtrace b/library/backtrace -Subproject 221483ebaf45df5c956adffee2d4024e7c3b96b +Subproject 4f925f8d81dfa57067537217e501e1dff743349 diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index 64f413acd97..ea5cfa406e7 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -23,11 +23,11 @@ hashbrown = { version = "0.11", default-features = false, features = ['rustc-dep std_detect = { path = "../stdarch/crates/std_detect", default-features = false, features = ['rustc-dep-of-std'] } # Dependencies of the `backtrace` crate -addr2line = { version = "0.14.0", optional = true, default-features = false } +addr2line = { version = "0.16.0", optional = true, default-features = false } rustc-demangle = { version = "0.1.18", features = ['rustc-dep-of-std'] } miniz_oxide = { version = "0.4.0", optional = true, default-features = false } [dependencies.object] -version = "0.22" +version = "0.26.1" optional = true default-features = false features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive'] |
