From 8639b02c2d0c670c4b1fdae153fdccd0461e8d7f Mon Sep 17 00:00:00 2001 From: Christopher Serr Date: Thu, 15 Aug 2024 15:54:29 +0200 Subject: [PATCH] Add `gc` feature for `wasmtime` dependency (#832) This is required for reference types, which Rust now uses by default with the nightly compiler. --- crates/livesplit-auto-splitting/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/livesplit-auto-splitting/Cargo.toml b/crates/livesplit-auto-splitting/Cargo.toml index 871ac2ff..d37a46d8 100644 --- a/crates/livesplit-auto-splitting/Cargo.toml +++ b/crates/livesplit-auto-splitting/Cargo.toml @@ -26,6 +26,7 @@ sysinfo = { version = "0.30.0", default-features = false, features = [ time = { version = "0.3.3", default-features = false } wasmtime = { version = "23.0.0", default-features = false, features = [ "cranelift", + "gc", "parallel-compilation", "runtime", ] }