From df33cf9f41d3092e39947e010440101c813439f7 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Mon, 19 Aug 2024 09:19:59 +0900 Subject: [PATCH] [wasi] Add use core::iter::Iterator; --- src/wasi.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wasi.rs b/src/wasi.rs index 6ab7285f03359..f2823cd582f0e 100644 --- a/src/wasi.rs +++ b/src/wasi.rs @@ -2,6 +2,7 @@ // `wasi-libc` project provides multiple libraries including emulated features, but we list only basic features with `libc.a` here. use super::{Send, Sync}; +use core::iter::Iterator; pub use ffi::c_void;