Skip to content

Commit f86521e

Browse files
committedAug 19, 2019
Auto merge of #63700 - alexcrichton:update-backtrace, r=sfackler
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]: rust-lang/backtrace-rs@0.3.34...0.3.35
2 parents cdff918 + 1301b10 commit f86521e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

‎Cargo.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ dependencies = [
9999

100100
[[package]]
101101
name = "backtrace"
102-
version = "0.3.34"
102+
version = "0.3.35"
103103
source = "registry+https://github.com/rust-lang/crates.io-index"
104104
dependencies = [
105105
"backtrace-sys 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -863,7 +863,7 @@ name = "error-chain"
863863
version = "0.12.0"
864864
source = "registry+https://github.com/rust-lang/crates.io-index"
865865
dependencies = [
866-
"backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)",
866+
"backtrace 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)",
867867
]
868868

869869
[[package]]
@@ -878,7 +878,7 @@ name = "failure"
878878
version = "0.1.5"
879879
source = "registry+https://github.com/rust-lang/crates.io-index"
880880
dependencies = [
881-
"backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)",
881+
"backtrace 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)",
882882
"failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
883883
]
884884

@@ -2577,7 +2577,7 @@ name = "rustc"
25772577
version = "0.0.0"
25782578
dependencies = [
25792579
"arena 0.0.0",
2580-
"backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)",
2580+
"backtrace 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)",
25812581
"bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
25822582
"byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
25832583
"chalk-engine 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -3520,7 +3520,7 @@ name = "std"
35203520
version = "0.0.0"
35213521
dependencies = [
35223522
"alloc 0.0.0",
3523-
"backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)",
3523+
"backtrace 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)",
35243524
"cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
35253525
"cfg-if 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
35263526
"compiler_builtins 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -4349,7 +4349,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
43494349
"checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee"
43504350
"checksum arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef"
43514351
"checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652"
4352-
"checksum backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)" = "b5164d292487f037ece34ec0de2fcede2faa162f085dd96d2385ab81b12765ba"
4352+
"checksum backtrace 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)" = "1371048253fa3bac6704bfd6bbfc922ee9bdcee8881330d40f308b81cc5adc55"
43534353
"checksum backtrace-sys 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)" = "5b3a000b9c543553af61bc01cbfc403b04b5caa9e421033866f2e98061eb3e61"
43544354
"checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
43554355
"checksum bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd"

‎src/libstd/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ unwind = { path = "../libunwind" }
2626
hashbrown = { version = "0.5.0", features = ['rustc-dep-of-std'] }
2727

2828
[dependencies.backtrace]
29-
version = "0.3.34"
29+
version = "0.3.35"
3030
default-features = false # don't use coresymbolication on OSX
3131
features = [
3232
"rustc-dep-of-std", # enable build support for integrating into libstd

0 commit comments

Comments
 (0)
Please sign in to comment.