Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/synth-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 /
Expand Down
2 changes: 1 addition & 1 deletion crates/synth-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading