diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2019-08-19 06:13:18 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2019-08-19 06:13:18 -0700 |
| commit | 1301b100ca9dada71789fb43e5ff3f5d8b05eb4c (patch) | |
| tree | 7bab200464ff6fe288ebdae83f6c016f44ea4b76 /src/libstd | |
| parent | cdff9189556bb7de2b9a8a72344c9d8ec6099fcd (diff) | |
| download | rust-1301b100ca9dada71789fb43e5ff3f5d8b05eb4c.tar.gz rust-1301b100ca9dada71789fb43e5ff3f5d8b05eb4c.zip | |
std: Update `backtrace` crate dependency
This commit updates the `backtrace` crate from 0.3.34 to 0.3.35. The [included set of changes][changes] for this update mostly includes some gimli-related improvements (not relevant for the standard library) but critically includes a fix for rust-lang/backtrace-rs#230. The standard library will not aqcuire a session-local lock whenever a backtrace is generated on Windows to allow external synchronization with the `backtrace` crate itself, allowing `backtrace` to be safely used while other threads may be panicking. [changes]: https://github.com/rust-lang/backtrace-rs/compare/0.3.34...0.3.35
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 3288d0b4df2..bb77a5bdea4 100644 --- a/src/libstd/Cargo.toml +++ b/src/libstd/Cargo.toml @@ -26,7 +26,7 @@ unwind = { path = "../libunwind" } hashbrown = { version = "0.5.0", features = ['rustc-dep-of-std'] } [dependencies.backtrace] -version = "0.3.34" +version = "0.3.35" default-features = false # don't use coresymbolication on OSX features = [ "rustc-dep-of-std", # enable build support for integrating into libstd |
