From d87801f48863269d8638d1642b0f8699bccf13b8 Mon Sep 17 00:00:00 2001 From: Jubilee Young Date: Wed, 28 Jun 2023 22:16:55 -0700 Subject: [PATCH 1/2] Harmonize deps with rustc 1.72 Ask for similar deps as to what will be used in std. --- Cargo.toml | 4 ++-- crates/as-if-std/Cargo.toml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0d5092e51..14f5e3613 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ exclude = [ [dependencies] cfg-if = "1.0" rustc-demangle = "0.1.4" -libc = { version = "0.2.94", default-features = false } +libc = { version = "0.2.146", default-features = false } # Optionally enable the ability to serialize a `Backtrace`, controlled through # the `serialize-*` features below. @@ -41,7 +41,7 @@ addr2line = { version = "0.20.0", default-features = false } miniz_oxide = { version = "0.7.0", default-features = false } [dependencies.object] -version = "0.31.0" +version = "0.31.1" 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 fd07dd62e..012e60f8f 100644 --- a/crates/as-if-std/Cargo.toml +++ b/crates/as-if-std/Cargo.toml @@ -13,13 +13,13 @@ bench = false [dependencies] cfg-if = "1.0" -rustc-demangle = "0.1.4" -libc = { version = "0.2.45", default-features = false } +rustc-demangle = "0.1.21" +libc = { version = "0.2.146", default-features = false } addr2line = { version = "0.20.0", default-features = false, optional = true } -miniz_oxide = { version = "0.4.0", default-features = false } +miniz_oxide = { version = "0.7", default-features = false } [dependencies.object] -version = "0.31" +version = "0.31.1" default-features = false optional = true features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive'] From 36984095af5aff677379ccad4e0a44ec1d3b3152 Mon Sep 17 00:00:00 2001 From: Jubilee Young Date: Wed, 28 Jun 2023 22:30:18 -0700 Subject: [PATCH 2/2] Prepare 0.3.68 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 14f5e3613..cff2c9e66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "backtrace" -version = "0.3.67" +version = "0.3.68" authors = ["The Rust Project Developers"] build = "build.rs" license = "MIT OR Apache-2.0"