From 9a8a710d8b050b6fdc1c37b07458ce506f277388 Mon Sep 17 00:00:00 2001 From: Christopher Serr Date: Wed, 26 Oct 2022 22:42:31 +0200 Subject: [PATCH] Add missing `Win32_Foundation` feature (#5134) This is necessary for the `wasmtime-runtime` crate to compile on Windows. --- crates/runtime/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index 2c002cdca7..792c358f1a 100644 --- a/crates/runtime/Cargo.toml +++ b/crates/runtime/Cargo.toml @@ -36,6 +36,7 @@ rustix = { workspace = true, features = ["mm"] } [target.'cfg(target_os = "windows")'.dependencies.windows-sys] workspace = true features = [ + "Win32_Foundation", "Win32_System_Kernel", "Win32_System_Memory", "Win32_System_Diagnostics_Debug",