about summary refs log tree commit diff
path: root/library/std/Cargo.toml
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2021-08-18 19:44:24 -0700
committerAlex Crichton <alex@alexcrichton.com>2021-08-19 07:31:49 -0700
commit4a3e73643ab944d868a6b2bf05d2d4677cbfb35f (patch)
treeb077c4d634c66f07ecd9603412db171c45ea08e3 /library/std/Cargo.toml
parent3d0774d0dc98084d25d95cc1909a8051ebbd9cb1 (diff)
downloadrust-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/std/Cargo.toml')
-rw-r--r--library/std/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
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']