From 8d016af9ea005825e263db79d05c524232476a83 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Sat, 25 Apr 2026 08:58:55 -0700 Subject: [PATCH] Allow running Wasm GC programs in the bench API We need to be able to parse `-Wgc` from Sightglass. --- crates/bench-api/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/bench-api/Cargo.toml b/crates/bench-api/Cargo.toml index 60fa5a24b963..4578b8faa47f 100644 --- a/crates/bench-api/Cargo.toml +++ b/crates/bench-api/Cargo.toml @@ -24,6 +24,7 @@ target-lexicon = { workspace = true } wasmtime = { workspace = true, default-features = true, features = ["winch", "pulley"] } wasmtime-cli-flags = { workspace = true, default-features = true, features = [ "cranelift", + "gc", ] } wasmtime-wasi = { workspace = true, features = ['p1'] } wasmtime-wasi-nn = { workspace = true, optional = true }