From 40410b7c31618c5ee82501839f7744c379bb9642 Mon Sep 17 00:00:00 2001 From: Philip Craig Date: Fri, 18 Aug 2023 10:04:24 +1000 Subject: [PATCH] Update addr2line and object dependencies (rust-lang/backtrace-rs#557) --- .github/workflows/main.yml | 2 +- Cargo.toml | 4 ++-- crates/as-if-std/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 29fff2795..21d7cb492 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -229,7 +229,7 @@ jobs: with: submodules: true - name: Install Rust - run: rustup update 1.55.0 && rustup default 1.55.0 + run: rustup update 1.65.0 && rustup default 1.65.0 - run: cargo build miri: diff --git a/Cargo.toml b/Cargo.toml index cff2c9e66..40aad711b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,11 +37,11 @@ rustc-serialize = { version = "0.3", optional = true } # Optionally demangle C++ frames' symbols in backtraces. cpp_demangle = { default-features = false, version = "0.4.0", optional = true, features = ["alloc"] } -addr2line = { version = "0.20.0", default-features = false } +addr2line = { version = "0.21.0", default-features = false } miniz_oxide = { version = "0.7.0", default-features = false } [dependencies.object] -version = "0.31.1" +version = "0.32.0" default-features = false features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive'] diff --git a/crates/as-if-std/Cargo.toml b/crates/as-if-std/Cargo.toml index 012e60f8f..0c9ff007c 100644 --- a/crates/as-if-std/Cargo.toml +++ b/crates/as-if-std/Cargo.toml @@ -15,11 +15,11 @@ bench = false cfg-if = "1.0" rustc-demangle = "0.1.21" libc = { version = "0.2.146", default-features = false } -addr2line = { version = "0.20.0", default-features = false, optional = true } +addr2line = { version = "0.21.0", default-features = false, optional = true } miniz_oxide = { version = "0.7", default-features = false } [dependencies.object] -version = "0.31.1" +version = "0.32.0" default-features = false optional = true features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive']