From 9d1044076ed2a01f0ffb04cadea9c6bdf469267a Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 17 Aug 2023 19:50:56 -0700 Subject: [PATCH] Fix compilation on Windows. --- crates/wasi/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasi/Cargo.toml b/crates/wasi/Cargo.toml index edd97477af9a..a67fd1de510e 100644 --- a/crates/wasi/Cargo.toml +++ b/crates/wasi/Cargo.toml @@ -51,7 +51,7 @@ libc = { workspace = true } [target.'cfg(windows)'.dependencies] io-extras = { workspace = true } windows-sys = { workspace = true } -rustix = { workspace = true, features = ["net"], optional = true } +rustix = { workspace = true, features = ["event", "net"], optional = true } [features] default = ["sync", "preview2", "preview1-on-preview2"]