From 730245633091d4a9c5b39ab7459d28467aba290a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 21:45:47 +0000 Subject: [PATCH] chore(deps): bump gimli from 0.33.0 to 0.34.0 Bumps [gimli](https://github.com/gimli-rs/gimli) from 0.33.0 to 0.34.0. - [Changelog](https://github.com/gimli-rs/gimli/blob/main/CHANGELOG.md) - [Commits](https://github.com/gimli-rs/gimli/compare/0.33.0...v0.34.0) --- updated-dependencies: - dependency-name: gimli dependency-version: 0.34.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 +++--------- crates/synth-cli/Cargo.toml | 2 +- crates/synth-core/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 56b3480d..4a49d3a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -735,12 +735,12 @@ dependencies = [ [[package]] name = "gimli" -version = "0.33.0" +version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bf7f043f89559805f8c7cacc432749b2fa0d0a0a9ee46ce47164ed5ba7f126c" +checksum = "1033caf0b349c518623b5396bfb2cf0bddf44f0306d543a250e5743297aafd10" dependencies = [ "fnv", - "hashbrown 0.16.1", + "hashbrown 0.17.1", "indexmap", "stable_deref_trait", ] @@ -771,12 +771,6 @@ dependencies = [ "foldhash 0.1.5", ] -[[package]] -name = "hashbrown" -version = "0.16.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" - [[package]] name = "hashbrown" version = "0.17.1" diff --git a/crates/synth-cli/Cargo.toml b/crates/synth-cli/Cargo.toml index 472786dd..722fe579 100644 --- a/crates/synth-cli/Cargo.toml +++ b/crates/synth-cli/Cargo.toml @@ -63,7 +63,7 @@ sha2 = "0.11" # gimli::read to prove the section is real debugger-readable DWARF (addresses in # `.text` range, lines non-zero). Test-only; the production read+emit lives in # synth-core. Matches synth-core's gimli pin. -gimli = { version = "0.33", default-features = false, features = ["read", "std"] } +gimli = { version = "0.34", default-features = false, features = ["read", "std"] } # VCR-MEM-001 (#383) layer-2 substrate: scry's sound shadow-stack-depth analysis, # verified in-tree against a real module. DEV-dependency only — the production # binary does not pull scry until the gated consumption step (the .bss shrink / diff --git a/crates/synth-core/Cargo.toml b/crates/synth-core/Cargo.toml index b3c9e2df..ca2c6a41 100644 --- a/crates/synth-core/Cargo.toml +++ b/crates/synth-core/Cargo.toml @@ -23,7 +23,7 @@ wasmparser.workspace = true # crate_universe auto-resolves this from Cargo.lock (no MODULE.bazel pin needed). # `read` + `write` are gimli's defaults; named explicitly so the emitter cannot # silently lose the `write` half. -gimli = { version = "0.33", default-features = false, features = ["read", "write", "std"] } +gimli = { version = "0.34", default-features = false, features = ["read", "write", "std"] } [dev-dependencies] wat.workspace = true