diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2019-06-03 12:29:53 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2019-06-04 18:45:39 -0700 |
| commit | fa1b6add097bf8865e843169b5ae0656b0486dad (patch) | |
| tree | 7e6989cfc7b06fbd197f3f6f0aa3fd950c53ab05 /src/libstd | |
| parent | 5d8f59f4b1473217c2de7e02330b5aaae70a1668 (diff) | |
| download | rust-fa1b6add097bf8865e843169b5ae0656b0486dad.tar.gz rust-fa1b6add097bf8865e843169b5ae0656b0486dad.zip | |
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.27 Closes #61416
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/Cargo.toml | 2 |
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 |
