about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-06-05 08:20:20 +0000
committerbors <bors@rust-lang.org>2019-06-05 08:20:20 +0000
commit817d2feb13dd1faad47ec699cd473b8be2093ec9 (patch)
treecc952593ab8e17ebbe991eb159450d8149f560ff /src/libstd
parent81eb15210a0c43820b146cd9ae6fd2062e1b2922 (diff)
parentfa1b6add097bf8865e843169b5ae0656b0486dad (diff)
downloadrust-817d2feb13dd1faad47ec699cd473b8be2093ec9.tar.gz
rust-817d2feb13dd1faad47ec699cd473b8be2093ec9.zip
Auto merge of #61502 - alexcrichton:update-backtrace, r=estebank
std: Update dependency on `backtrace`

Discovered in #61416 an accidental regression in libstd's backtrace
behavior is that it previously attempted to consult libbacktrace and
would then fall back to `dladdr` if libbacktrace didn't report anything.
The `backtrace` crate, however, did not do this, so that's now been
fixed!

Changes: https://github.com/rust-lang/backtrace-rs/compare/0.3.25...0.3.29

Closes #61416
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/Cargo.toml b/src/libstd/Cargo.toml
index cf1dbba0055..816a191a2a9 100644
--- a/src/libstd/Cargo.toml
+++ b/src/libstd/Cargo.toml
@@ -25,7 +25,7 @@ unwind = { path = "../libunwind" }
 hashbrown = { version = "0.4.0", features = ['rustc-dep-of-std'] }
 
 [dependencies.backtrace]
-version = "0.3.25"
+version = "0.3.29"
 default-features = false # don't use coresymbolication on OSX
 features = [
   "rustc-dep-of-std", # enable build support for integrating into libstd