From 9b9e46abd821178b9b7e5b416fdd0b2e98ff0a39 Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Fri, 20 Nov 2020 20:33:13 +0100 Subject: [PATCH] Update to backtrace version 0.3.55 (#2436) This fixes a bug in the get_sp function on s390x, which caused crashed during garbage collection. --- Cargo.lock | 4 ++-- crates/runtime/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f1d0c04bfe..2ad268c146 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -94,9 +94,9 @@ checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" [[package]] name = "backtrace" -version = "0.3.54" +version = "0.3.55" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2baad346b2d4e94a24347adeee9c7a93f412ee94b9cc26e5b59dea23848e9f28" +checksum = "ef5140344c85b01f9bbb4d4b7288a8aa4b3287ccef913a14bcc78a1063623598" dependencies = [ "addr2line", "cfg-if 1.0.0", diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index 7fd868ad43..6d02396ef0 100644 --- a/crates/runtime/Cargo.toml +++ b/crates/runtime/Cargo.toml @@ -21,7 +21,7 @@ indexmap = "1.0.2" thiserror = "1.0.4" more-asserts = "0.2.1" cfg-if = "1.0" -backtrace = "0.3.49" +backtrace = "0.3.55" lazy_static = "1.3.0" psm = "0.1.11"