From e09b65dfa287306b94b44e71bdd65cbb9cf6d2c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 13:16:58 +0000 Subject: [PATCH] build(deps): bump addr2line from 0.26.1 to 0.27.0 Bumps [addr2line](https://github.com/gimli-rs/addr2line) from 0.26.1 to 0.27.0. - [Changelog](https://github.com/gimli-rs/addr2line/blob/main/CHANGELOG.md) - [Commits](https://github.com/gimli-rs/addr2line/compare/v0.26.1...v0.27.0) --- updated-dependencies: - dependency-name: addr2line dependency-version: 0.27.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 +++++++++++++---- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2cb33c15..5ca444a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,13 +13,13 @@ dependencies = [ [[package]] name = "addr2line" -version = "0.26.1" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59317f77929f0e679d39364702289274de2f0f0b22cbf50b2b8cff2169a0b27a" +checksum = "efe1709241908a54ef1925c6018f41d3f523d0cfe174719761eb39e7b7bf086a" dependencies = [ "cpp_demangle 0.5.1", "fallible-iterator 0.3.0", - "gimli 0.33.1", + "gimli 0.34.0", "memmap2", "object 0.39.0", "rustc-demangle", @@ -219,7 +219,7 @@ dependencies = [ name = "blazesym" version = "0.2.6" dependencies = [ - "addr2line 0.26.1", + "addr2line 0.27.0", "anyhow", "blazesym", "blazesym-dev", @@ -961,6 +961,15 @@ dependencies = [ "stable_deref_trait", ] +[[package]] +name = "gimli" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1033caf0b349c518623b5396bfb2cf0bddf44f0306d543a250e5743297aafd10" +dependencies = [ + "stable_deref_trait", +] + [[package]] name = "glob" version = "0.3.2" diff --git a/Cargo.toml b/Cargo.toml index 4437682d..d1e92b5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -192,7 +192,7 @@ zstd = {version = "0.13", default-features = false, optional = true} [dev-dependencies] # For performance comparison; pinned, because we use #[doc(hidden)] # APIs. -addr2line = "=0.26.1" +addr2line = "=0.27.0" anyhow = "1.0" blazesym-dev = {path = "dev", features = ["generate-unit-test-files"]} criterion = {version = "0.8", default-features = false, features = ["rayon", "cargo_bench_support"]}